Skip to content

Instantly share code, notes, and snippets.

@saberg1
Last active January 12, 2021 20:42
Show Gist options
  • Save saberg1/c46576dccfd5a7bef6cbf51d03067c0f to your computer and use it in GitHub Desktop.
Save saberg1/c46576dccfd5a7bef6cbf51d03067c0f to your computer and use it in GitHub Desktop.
Beginners Guide to Data Types

Beginners Guide to Data Types

By Steven Berg

I have just started classes at Turing when i decided it was time to share my wealth of knowledge with the world. There just a few a basic data types, and they are:

  1. string
  2. boolean
  3. array
  4. extension
  5. interger
  6. float

String is a data type that used to represent text. Also it can contain:

  • numbers
  • special characters
  • spaces

Next are the booleans. These are my favorite to say They are represented true/false or yes/no values in javascript.

console.log(name + " took our shitzu on a " + distance + " mile long walk today!")
}

dogWalker('John', 8);

picture of something: alt text

⚡️ TURN THIS SENTENCE INTO A LINK TO YOUR GIST ⚡️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment