Skip to content

Instantly share code, notes, and snippets.

View cmmelton2's full-sized avatar

Cassie cmmelton2

  • North Carolina
View GitHub Profile
@cmmelton2
cmmelton2 / gist:fa09e0f7186d40f5844d630e25786d74
Created September 20, 2017 07:17 — forked from Su-Shee/gist:5d1a417fa9de19c15477
Falsehoods Programmers Believe About "Women In Tech"

Falsehoods Programmers Believe About "Women In Tech"

  • We have absolutely no idea what we're doing in tech. Please explain the utmost basic things to us.

  • We only do web design. Our whole reason of being in tech is to make things pretty. Consider us the doilies of the industry.

  • We're not laughing about your joke, so we clearly need you explain it to us. In great detail.

  • We're only in tech to find a husband, boyfriend or generally to get laid.

// Mini-Bootcamp: Lesson 1 - Intro To ES6 and BEYOND!
// let, const are new to JavaScript as of 2015.
// ES6 - ES2015;
// math --> + - * / %
const name = 'Ryan'; // --> String
let age = 12; // --> Number
let isEven = false; // --> Boolean
let checkedIfEven = age % 2;
console.log(checkedIfEven);