Skip to content

Instantly share code, notes, and snippets.

View aldojack's full-sized avatar

Alan Jack aldojack

View GitHub Profile
{
"basics": {
"name": "Alan Jack",
"label": "Helpdesk Operator at City Facilities Management UK",
"picture": "",
"email": "alan.jack1@outlook.com",
"phone": "+44732460065",
"website": "https://alanjack613601050.wordpress.com",
"summary": "",
"location": {
@aldojack
aldojack / script.js
Created April 6, 2021 16:37
NumberGuesser/Codecademy/js
let humanScore = 0;
let computerScore = 0;
let currentRoundNumber = 1;
// Write your code below:
const generateTarget = () => {
const targetNum = Math.floor(Math.random() * 10);
return targetNum;
}