1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 21:54:58 +00:00
serenity/Libraries/LibJS/Tests/builtins/Math/Math.sqrt.js
2020-07-03 19:30:13 +02:00

7 lines
100 B
JavaScript

load("test-common.js");
try {
assert(Math.sqrt(9) === 3);
console.log("PASS");
} catch {
}