Skip to content

Instantly share code, notes, and snippets.

View injune1123's full-sized avatar
๐ŸŽ
Embracing whatever gift life sends me

Jun Yin injune1123

๐ŸŽ
Embracing whatever gift life sends me
View GitHub Profile
@injune1123
injune1123 / JS cheat sheet
Last active February 6, 2019 04:39
JS cheat sheet
//JS classes
classes are syntax sugars
classes get passed down
classes are not hoisted
two ways to define classes: class declarations and experssions
//straight functions vs classes
functions: hoisted, can be overwritten
classes: not hoisted, can be extended but not overwritten
classes are more like blueprints, which can have methods
@injune1123
injune1123 / My vscode Cheat sheet
Last active February 6, 2019 04:44
My vscode Cheat sheet
//My vscode extensions
live server
//key board short cuts
command + p
option click
@injune1123
injune1123 / slack Cheatsheet
Last active May 20, 2019 21:25
slack Cheatsheet
/giphy #caption "your gif caption here" some search text
/genie whoisoncall
@injune1123
injune1123 / JIRA filter
Created December 18, 2019 18:34
JIRA filter
project in (PRJ1, PRJ1) AND status in (Closed, Deployed, Done) AND created >= 2019-09-01 AND created <= 2019-12-31 AND assignee in (your user name) ORDER BY created DESC