Created
January 14, 2019 21:17
-
-
Save joshuaaguilar20/38811646e66db9b377577598890b90b8 to your computer and use it in GitHub Desktop.
Josh Mitch Teaching session number 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Data Types | |
Variables | |
Loops | |
// Data Types | |
// string = "this is a string" | |
// boolean = true false //logic | |
// int = 5; | |
// object = {}; | |
// Array = []; | |
// Functions = Do stuff | |
// Loop - do stuff a bunch of times* | |
var userscore = 10; | |
var userScore = 5; | |
var username = "myusername 5"; | |
var xbox=12; | |
var boolean = true; | |
// this is not code comments | |
console.log(username + userscore); | |
//if i dont have anymoney stay home | |
//if I have lots of money travel | |
if(true or false){ | |
//do something | |
} | |
Teaching classes | |
udemy colt steel web dev bootcamp | |
CS50 Harvard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment