Skip to content

Instantly share code, notes, and snippets.

@promisepreston
Last active December 9, 2019 16:02
Show Gist options
  • Save promisepreston/f18d4483ee089eceb1d3208b242e6336 to your computer and use it in GitHub Desktop.
Save promisepreston/f18d4483ee089eceb1d3208b242e6336 to your computer and use it in GitHub Desktop.

JavaScript Cheat Sheet

Common Commands and Description

Command Description
cd Change directory

Including JavaScript in an HTML Page

<script type="text/javascript">
//JS code goes here
</script>

Call an External JavaScript File

<script src="myscript.js"></script>

Including Comments

Single-line comments
// This is a cmmment

Multi-line comments

/*
This is a multi-line comment
*/

Variables in JavaScript

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment