Heim > Artikel > Web-Frontend > Was ist die Verwendung von math.sqrt in vue?
In vue wird die Methode „math.sqrt“ verwendet, um die Quadratwurzel einer Zahl zurückzugeben. Es handelt sich um eine integrierte Methode der Mathematik. Wenn die eingestellte Zahl eine negative Zahl ist, ist das zurückgegebene Ergebnis NaN Die Syntax lautet „math.sqrt (numerischer Wert)“.
Die Betriebsumgebung dieses Artikels: Windows 10-System, Vue Version 2.9.6, DELL G3-Computer.
sqrt() gibt die Quadratwurzel einer Zahl zurück.
Die Syntax lautet:
Math.sqrt(x)
Wenn x eine negative Zahl ist, wird NaN zurückgegeben.
Beispiele sind wie folgt:
var a = Math.sqrt(0); var b = Math.sqrt(1); var c = Math.sqrt(9); var d = Math.sqrt(64); var e = Math.sqrt(-9);
Ausgabeergebnisse:
0 1 3 8 NaN
Erweiterte Kenntnisse:
Integrierte mathematische Methoden
// Math的内置方法 // 1 random()返回0~1的数字,不包含1 console.log(Math.random()); // 2 round()返回一个四舍五入的数字 console.log(Math.round(1.6)); // 2 // 3 abs() console.log(Math.abs(-2.566)); // 2.566 // 4 floor() console.log(Math.floor(2.3)); // 2 // 5 ceil() console.log(Math.ceil(2.1)); // 3 // 6 max() min console.log(Math.max(1,2,3,7,8,9,5)); // 9 console.log(Math.min(1,2,3,7,8,9,5)); // 1 // 7 PI console.log(Math.PI); // 3.141592653589793 // 8 pow(底数,次方) console.log(Math.pow(2,3)); 8 // 9 sqrt() console.log(Math.sqrt(4)); // 2
[Verwandte Empfehlungen: „vue.js Tutorial“]
Das obige ist der detaillierte Inhalt vonWas ist die Verwendung von math.sqrt in vue?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!