Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
5
Task/Collections/JavaScript/collections-1.js
Normal file
5
Task/Collections/JavaScript/collections-1.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
var array = [];
|
||||
array.push('abc');
|
||||
array.push(123);
|
||||
array.push(new MyClass);
|
||||
console.log( array[2] );
|
||||
5
Task/Collections/JavaScript/collections-2.js
Normal file
5
Task/Collections/JavaScript/collections-2.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
var obj = {};
|
||||
obj['foo'] = 'xyz'; //equivalent to: obj.foo = 'xyz';
|
||||
obj['bar'] = new MyClass; //equivalent to: obj.bar = new MyClass;
|
||||
obj['1x; ~~:-b'] = 'text'; //no equivalent
|
||||
console.log(obj['1x; ~~:-b']);
|
||||
Loading…
Add table
Add a link
Reference in a new issue