Skip to content

Instantly share code, notes, and snippets.

View katemalone's full-sized avatar

Kate Malone katemalone

View GitHub Profile
@katemalone
katemalone / VanillaJS.md
Last active November 13, 2019 19:34
Vanilla JavaScript Review
  • In JavaScript, the console keyword refers to an object, a collection of data and actions, that we can use in our code.

  • Keywords are words that are built into the JavaScript language, so the computer will recognize them and treats them specially.

  • One action, or method, that is built into the console object is the .log() method. When we write console.log() what we put inside the parentheses will get printed, or logged, to the console.

  • primitive data types

  • booleans