퇴근 후 JS - Variables ( let, const)
https://www.w3schools.com/js/js_variables.asp JavaScript Variables W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 1. var, let or const 차이 1) 변수 선언하는 container 이다. 2) 변수가 변한다면 var, let 3) 변수가 고정이다면 const 2. Data Types 1) Number은 따..
퇴근 후 JS- 데이터 표현 방법(innerHTML, console.log(), alert()document.write().
https://www.w3schools.com/js/js_output.asp JavaScript Output W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 이번 페이지는 JavaScript can "display" data in different ways: Writing into an HTML element, using innerHTML. Writing into the ..