Base: Move "js" and "little" HackStudio projects into ~/Source/

This commit is contained in:
Andreas Kling 2020-08-05 17:25:01 +02:00
parent bc615572a9
commit db450dbc44
Notes: sideshowbarker 2024-07-19 04:15:46 +09:00
28 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,11 @@
var a = [1, 2, 3];
a[1] = 5;
var push_result = a.push(7);
for (var i = 0; i < a.length; ++i) {
console.log(a[i]);
}
console.log("push result: " + push_result);