Skip to main content
0:05est. 3 min

Chapter 43- Framework Aside (Whitespace)

Notes

#BIGWORD Whitespace - invisible characters that create literal ‘space' in your written code,
Carriage returns, tabs, spaces
Example 1
var
//first name of the person
firstname,

//last name of the person
lastname,

//the language
//can be ‘en' or ‘es'
language;

var person = {
//the first name
firstname: ‘John',

//the last name
//(always required)
lastname: ‘Doe'
}
console.log(person);