mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
Meta: Add for-loop JavaScript test program
This commit is contained in:
parent
097e1af4e8
commit
023d121e05
Notes:
sideshowbarker
2024-07-19 08:44:48 +09:00
Author: https://github.com/deoxxa Commit: https://github.com/SerenityOS/serenity/commit/023d121e055 Pull-request: https://github.com/SerenityOS/serenity/pull/1425 Reviewed-by: https://github.com/sunverwerth
5
Base/home/anon/js/for-loop.js
Normal file
5
Base/home/anon/js/for-loop.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
var x = 0;
|
||||||
|
for (var i = 0; i !== 3; i += 1) {
|
||||||
|
x += 2;
|
||||||
|
}
|
||||||
|
x;
|
Loading…
Reference in New Issue
Block a user