|
Newsletters
|
|
|
|
|
WMLScript Reference
WMLScript Reference
WMLScript > Float > sqrt()
sqrt() - The sqrt Function
Usage: sqrt(value)
Description: Returns an implementation-dependent approximation to the square root of the given value.
Example:var a = 4;
var b = Float.sqrt(a); // b = 2.0
var c = Float.sqrt(5); // c = 2.2360679775
Bookmark this page
|
|