Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Ch02/02_01/transcript.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
// This is a transcript of the lines of code from the lesson.
// You can copy and paste each line into a JavaScript console to execute it and see the result.
// Naming variables
// Variable names are pretty flexible as long as you follow a few rules:
// Start them with a letter, underscore _, or dollar sign $.
// After the first letter, you can use numbers, as well as letters, underscores, or dollar signs.
// Don’t use any of JavaScript’s reserved keywords.

var x = 32;
x;
Expand All @@ -19,4 +24,4 @@ monster3;


// More info:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var