console.log("yo!");
yo!
var msg = "yo!";
console.log(msg);
yo!
function logIt(output) {
    console.log(output);
}
logIt(msg);
yo!
console.log("Reuse of logIT")
logIt("my name is walter hardwell white. i live at");
logIt(308);
logIt("negra aroyal lane, albequerque new mexico.")
Reuse of logIT
my name is walter hardwell white. i live at
308
negra aroyal lane, albequerque new mexico.
function logItType(output) {
    console.log(typeof output, ";", output);
}
console.log("looking for who asked")
logItType("literally no one"); // String
logItType(0);    // Number
logItType([0, 0, 0]);  // Object is generic for this Array, which similar to Python List
looking for who asked
string ; literally no one
number ; 0
object ; [ 0, 0, 0 ]

layout: default title: javascript

permalink: /frontend/General to do

Overview Collegeboard Scoring Grades To Do 6 General to do Yearbook vocab