Skip to content

Instantly share code, notes, and snippets.

@scmistele
Last active October 15, 2021 14:30
Show Gist options
  • Select an option

  • Save scmistele/76aac9a8f02803dc384d9bbd529da6eb to your computer and use it in GitHub Desktop.

Select an option

Save scmistele/76aac9a8f02803dc384d9bbd529da6eb to your computer and use it in GitHub Desktop.
sam_mistele_mod_0_plan.md

Gameplan for success at Turing

By Sam Mistele

Quick tip for success:

  1. Choose healthy food options.

  2. Get plenty of rest.

  3. Plan out "Homework time" and "Me time" to ensure balance.

  4. Gain little advantages:

    *Skim lessons ahead of time

    *Google is a useful tool

    *Practice navigation using only keys

    *Take thorough notes

    *Ask questions

Pets are amazing for stress and emotional support!

alt text

Now heres some code that I absolutely did not google the syntax on:

var myAge = 30;
var tinkAge = 19;
var roryAge = 2;

// add rory's age, tinkerbell's age, and my age
var sum = myAge + tinkAge + roryAge;

// display the sum
console.log('The sum of ' + myAge + ' , ' + roryAge + ' and ' + tinkAge + ' is: ' + sum);
// define age
var myAge = 30;

// guess age
if myAge !=30 {
    console.log("Try again!")
} else {
    console.log("You got it!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment