Languages
[Edit]
DE

JavaScript - Math.sqrt() Methode - Beispiel

3 points
Created by:
Nikki
10520

Math sqrt ist eine statische Methode, die eine Zahl zurĂŒckgibt, die die Quadratwurzel des Eingabewerts ist. Die Methode funktioniert nur bei positiven wirklichen Zahlen.  

// ONLINE-RUNNER:browser;

console.log( Math.sqrt(  4   ) ); //  2
console.log( Math.sqrt(  9   ) ); //  3

console.log( Math.sqrt(  2   ) ); //  1.4142135623730951
console.log( Math.sqrt(  0.5 ) ); //  0.7071067811865476
console.log( Math.sqrt(  0   ) ); //  0
console.log( Math.sqrt( -1   ) ); //  NaN

1. Dokumentation

SyntaxMath.sqrt(number)
Parameternumber - Ganzzahl oder Gleitkommazahl im Bereich von 0 bis +Infinity (primitiver Wert).
Ergebnis

Quadartwurzelzahlwert im Bereich von 0 bis +Infinity (primitiver Wert).

Wenn die Operation nicht ausgefĂŒhrt werden kann, wird NaN zurĂŒckgegeben.

Beschreibungsqrt ist eine statische Methode, die eine Zahl zurĂŒckgibt, die die Quadratwurzel des Eingabewerts ist. Die Methode funktioniert nur bei positiven, realen Zahlen.

2. Quadratwurzel mit Math.pow Methode - Beispiel

In diesem Beispiel wird die Berechnung der Quadratwurzel mithilfe der Potenzfunktion vorgestellt.

// ONLINE-RUNNER:browser;

function calculateSqrt(value) {
    return Math.pow(value, 0.5);
}

// Beispiele:

console.log( calculateSqrt(  4   ) ); //  2
console.log( calculateSqrt(  9   ) ); //  3

console.log( calculateSqrt(  2   ) ); //  1.4142135623730951
console.log( calculateSqrt(  0.5 ) ); //  0.7071067811865476
console.log( calculateSqrt(  0   ) ); //  0
console.log( calculateSqrt( -1   ) ); //  NaN

Siehe auch

  1. JavaScript - wie berechnet man die Wurzel eines beliebigen Grades?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - Objekt Math (DE)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

â€ïžđŸ’» 🙂

Join