Created
August 12, 2018 09:48
-
-
Save DynamiteC/ddfeb0ba04a21e73053ad2084d14f52b to your computer and use it in GitHub Desktop.
Thinkful_Logic_Drills
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
function main() { | |
try{ | |
doAllTheThings(); | |
} | |
catch(e) | |
{ | |
console.log(e); | |
reportError(e); | |
} | |
} | |
function doAllTheThings() { | |
throw { | |
message: "Everything's ruined", | |
name: "FatalException", | |
toString: function(){return this.name + ": " + this.message;} | |
} | |
} | |
function reportError(e) { | |
$('.js-error-report').text("Uh oh, something went wrong! Here's what we know: " + e.message); | |
} | |
/* From here down, you are not expected to | |
understand.... for now :) | |
Nothing to see here! | |
*/ | |
$(main); |
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
function doTrafficLights() { | |
var activeLight = getActiveLight(); | |
// your code will replace this call | |
// to `console.log()` | |
console.log(activeLight); | |
switch(activeLight) | |
{ | |
case 'red' : | |
turnRed(); | |
break; | |
case 'green' : | |
turnGreen(); | |
break; | |
case 'yellow': | |
turnYellow(); | |
break; | |
default: | |
turnOffLights(); | |
} | |
} | |
/* From here down, you are not expected to | |
understand.... for now :) | |
Nothing to see here! | |
*/ | |
function turnOffLights() { | |
$('.traffic-light').removeClass('yellow-on red-on green-on'); | |
} | |
function turnGreen() { | |
turnOffLights(); | |
$('.green-light').addClass('green-on'); | |
} | |
function turnYellow() { | |
turnOffLights(); | |
$('.yellow-light').addClass('yellow-on'); | |
} | |
function turnRed() { | |
turnOffLights(); | |
$('.red-light').addClass('red-on'); | |
} | |
function getActiveLight() { | |
return (['red', 'green', 'yellow'])[Math.floor(Math.random() * 3)]; | |
} | |
function handleClicks() { | |
$('.js-control-lights').click(function() { | |
doTrafficLights(); | |
}); | |
} | |
$(handleClicks); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment