React를 위한 ES6 핵심정리 2
2017. 9. 11.
React를 위한 추가적인 ES6 문법들React를 하기위한 ES6문법 : http://voidmainvoid.tistory.com/67 14. String enhancements123startsWith() endsWith() includes()cs 15. Array enhancements ‐ for/of1234567891011var arr = [1,2,3,undefined, null, ""]; Array.prototype.getIndex = function() {}; for ( let value of arr) { console.log(value); } //function까지 노출된다.for ( let value in arr) { console.log(arr[value]); }Colored by Colo..