Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 502 Bytes

notes.md

File metadata and controls

33 lines (25 loc) · 502 Bytes

Javascript!

Datatypes

  • String => "text"
  • Number => integer (whole number) - floats (decimal nr)
  • Booleans => true || false
  • undefined =>
  • null
  • NaN => not a number (error)

Collections

  • Objects
const user = {
  name: "Karla",
  age: 28,
  dob: "12/11/93",
  teacher: true,
  profilePic:
    "https://m.media-amazon.com/images/I/81KA6d8ExAL._AC_UL640_FMwebp_QL65_.jpg",
};
  • Arrays

A ordered list. Of values

const studentList = ["Niels", "Gonzalo", "Ingrid"];