Avoid repeating ourselves in the code
A re-usable container for data
easier to update code
// var keyword
var varName;
// variable assignment. NOT EQUALITY, assignment.
var name = 'Swoop';
var isAStudent = 'false';
var age = 21;
/*
Valid names in JavaScript begin with a letter or certain symbols, followed by zero or more letters, digits, underscores, or symbols. Names may not begin with numbers, and may not include hyphens.
Reserved Words:
abstract boolean break byte case catch char class const continue debugger
default delete do double else enum export extends false final finally float
for function goto if implements import in instanceof int interface long
native new null package private protected public return short static super
switch synchronized this throw throws transient true try typeof var
volatile void while with
*/
Service via a web browser.
A thing connected to the Web.
via Liquid templating language.
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
Definitions of a