Skip to content

Instantly share code, notes, and snippets.

View benfaught's full-sized avatar

Benjamin Faught benfaught

  • US
View GitHub Profile
@benfaught
benfaught / js-fundamentals-answered.js
Created June 6, 2019 13:24
Self created JS quiz with answers
// this worksheet was generated from the 'Javascript Language Fundamentals' section of Brad Traversy's Modern Javascript Udemy course
// Variables **********************************************************************
// name 3 keywords for initializing and declaring a variable? var, let, const
// which 2 JS variable keywords are block scoped? let and const
// declare a variable but don't initialize a value.