Skip to content

Instantly share code, notes, and snippets.

View danieltichiyama's full-sized avatar

danieltichiyama

  • Honolulu, HI
View GitHub Profile
@danieltichiyama
danieltichiyama / JS_Subset_Cheatsheet.md
Created June 11, 2019 04:29 — forked from lorecrafting/JS_Subset_Cheatsheet.md
Subset of Javascript that is recommended to commit to memory by all new programmers

Be able to write out these skeletons in less than five seconds. It is vital that these are committed to memory and you don't need to think about it when asked to create these.

  1. Defining a function
var aFunc = function(arg1, arg2) {
  // your code in function body here using arg1 and arg2
}
  1. Iterating over an array