1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 02:44:58 +00:00
serenity/Libraries/LibJS/Tests/Math.sqrt.js
2020-04-04 22:44:48 +02:00

7 lines
116 B
JavaScript

function assert(x) { if (!x) throw 1; }
try {
assert(Math.sqrt(9) === 3);
console.log("PASS");
} catch {
}