Skip to content

Instantly share code, notes, and snippets.

@rogerwschmidt
Created June 6, 2017 15:55
Show Gist options
  • Save rogerwschmidt/209b82ac6b864d1ca50a0c758ce7bc6a to your computer and use it in GitHub Desktop.
Save rogerwschmidt/209b82ac6b864d1ca50a0c758ce7bc6a to your computer and use it in GitHub Desktop.

Introduction to Javascript Instructor Notes

Objectives

  • Describe what JavaScript is.
  • Describe what ECMAScript is.
  • Explain why JavaScript is important.
  • Run JavaScript in the browser
  • Run JavaScript from your Terminal

Describe what JavaScript is.

Check for understading

Turn to your neighbor and describe what Javascript is. Be prepared to share your discussion with the class.

Describe what ECMAScript is.

Check for understading

In your notes, write down what ECMAScript is. Be prepared to share your notes with the class.

Explain why JavaScript is important.

Check for understading

Turn to your neighbor and expalin why Javascript is important. Be prepared to share your discussion with the class.

Run JavaScript in the browser

Check for understading

In the browser

  1. Open the console 'Option + Command + i'
  2. Type the following code console.log('this class is awesome)

Run JavaScript from your Terminal

Check for understading

In the terminal

  1. Run node, this will open the node REPL
  2. Type the follwing code console.log('this class is awesome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment