Rules to Code By

If you’re relatively new to programming:

Source: Hacker School User’s Manual

 
1
Kudos
 
1
Kudos

Now read this

typescript

Variables # let apples = 5; let speed: string = 'fast'; let hasName: boolean = true; let nothingMuch: null = null; let nothing: undefined = undefined; Built in objects # let now: Date = new Date(); Arrays # let colors: string[] = ['red',... Continue →