JavaScript6 3. 데이터 타입, data types, let vs var, hoisting 💡 입력 연산 출력이 주요 기능이다!! → 전송도 포함일 수 있다! CPU에 최적화된 연산, 메모리에 최적화된 연산이 중요하다!! // 1. Use strict // added in ES 5 // use this fro Vanila JavaScript 'use strict'; // 2. Variable // let (added in ES6) let name = 'ellie'; console.log(name); name = 'hello'; console.log(name); //2-1. Block { let name = 'ellie'; console.log(name); name = 'hello'; console.log(name); } //지역 변수로 쓰게 되면 출력이 되지 않는 문제점이 있다!! consol.. 2021. 2. 13. 2. 콘솔에 출력, Script async와 defer의 차이점 Home - Ecma International Ecma is driven by industry members to meet their needs, providing a healthy competitive landscape based on differentiation of products and services rather than technology models, generating confidence among vendors and users of new technology. http://ecma-international.org MDN Web Docs The MDN Web Docs site provides information about Open Web technologies including HTML.. 2021. 2. 13. 이전 1 2 다음 반응형