Skip to content

Instantly share code, notes, and snippets.

@engramar
engramar / JS_Study_Group.js
Last active January 16, 2021 13:05
Comment Your JavaScript Code
//1.1 Comment Your JavaScript Code
// This is an in-line comment.
/* This is a
multi-line comment */
//1.2 Declare JavaScript Variables
var myName;
//1.3 Storing Values with the Assignment Operator
var a;