itarticle string method 2. String.prototype.concat(index) 3. String.prototype.split(string | regular Expression, number) 4. String.prototype.substring(start, end) 5. String.prototype.toLowerCase() 6. String.prototype.toUpperCase() 0
itarticle array method for advanced 2. Array.prototype.map(function(elem, index, array)) 3. Array.prototype.filter(function(elem, index, array)) 0
itarticle javascript technique for algorithms 배열이나 문자열에서 중복을 제거해야 할 때 배열이나 문자열에서 딱 1개만 있는 요소를 찾아야 할 경우 배열에 규칙적인 연속된 값 할당해야할 경우 배열에 최대값/최소값을 찾아야 할 경우 지정된 숫자를 자신보다 작은, 가까운 정수로 내림해야 할 경우 지정된 숫자를 자신보다 큰, 가까운 정수로 올림해야 할 경우 0