- Describe what JavaScript is.
- Describe what ECMAScript is.
- Explain why JavaScript is important.
- Run JavaScript in the browser
- Run JavaScript from your Terminal
Turn to your neighbor and describe what Javascript is. Be prepared to share your discussion with the class.
In your notes, write down what ECMAScript is. Be prepared to share your notes with the class.
Turn to your neighbor and expalin why Javascript is important. Be prepared to share your discussion with the class.
In the browser
- Open the console 'Option + Command + i'
- Type the following code
console.log('this class is awesome
)
In the terminal
- Run
node
, this will open the node REPL - Type the follwing code
console.log('this class is awesome
)