javascript

Javascript Command Cheatsheet

Javascript Basics

const variable = 10;
let name = "John";
var isActive = true;
const greeting = `Hello, ${name}`;
← Back to Cheatsheet