-
배열 - 자바 스크립트Data/Container 2013. 9. 8. 17:36
.length
- 자바스크립트 1.2
.push()
emptyList = [];
var a = ['a', true, 4.78];
- 자바스크립트 1.1
var a = new Array();
var a = new Array(5, 4, 3, 2, 1, "testing, testing");
var a = new Array(10); // 배열의 길이를 지정하는 단일 숫자 인자
let ar = ['a','b','c','d','e'];
for(let i of ar) {
console.log(i);
}
ar.forEach(x => console.log(x));
let testSet3 = new Set(["tiger","lion","dog","cat"]);
for(let i of testSet3) {
console.log(i);
}
testSet3.forEach(x => console.log(x));
console.log(...testSet3);-
c.f. 연관 배열
var validationFunctions = new Object()
validationFunctions["required"] = isRequired;
validationFunctions["numeric"] = isNumeric;
..
// 연관 배열의 모든 키를 순환(객체의 모든 프로퍼티를 순환, 각괄호 표기법)
for (var i in validationFunctions) {
.. validationFunctions[i]() ..
}