mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibJS: Implement unary plus / minus
This commit is contained in:
parent
5e6e1fd482
commit
a62230770b
Notes:
sideshowbarker
2024-07-19 07:59:16 +09:00
Author: https://github.com/linusg
Commit: a62230770b
Pull-request: https://github.com/SerenityOS/serenity/pull/1587
9 changed files with 73 additions and 25 deletions
|
@ -2,7 +2,7 @@ function assert(x) { if (!x) throw 1; }
|
|||
|
||||
try {
|
||||
assert(Math.abs('-1') === 1);
|
||||
assert(Math.abs(0 - 2) === 2);
|
||||
assert(Math.abs(-2) === 2);
|
||||
assert(Math.abs(null) === 0);
|
||||
assert(Math.abs('') === 0);
|
||||
assert(Math.abs([]) === 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue