This is a sample post about JavaScript basics.
Variables
JavaScript has three ways to declare variables:
1 | var oldWay = 'var is function-scoped'; |
Functions
Functions are first-class citizens in JavaScript:
1 | function greet(name) { |
Stay tuned for more JavaScript tutorials!