JavaScript | 자바스크립트 | INTRODUCTION TO JAVASCRIPT 두번째

JavaScript | 자바스크립트 | INTRODUCTION TO JAVASCRIPT 두번째

Getting Started with Programming | Codecademy
Time to become a coding champ.


 Two. Why learn programming? 
6/28 Editor and comments
File1 _ script.js
"cake".length;

7/28 What am I learning?
File1 _ script.js
confirm('This is an example of using JS to create some interaction on a website. Click OK to continue!');

8/28 Interactive JavaScript
File1 _ script.js
confirm("Welcome, Here is JONESTUDIO");

9/28 What is programming?
File1 _ script.js
prompt("What is your name?");
prompt("What is Ubuntu?");

10/28 Data Types I & II: Numbers & Strings
File1 _ script.js
"What is your name?"
"What is your name?".length;


11/28 Data Types III: Booleans
File1 _ script.js
"I'm coding like a champ"
"I'm coding like a champ".length;
"I'm coding like a champ".length > 10;