Skip to content

Latest commit

 

History

History
116 lines (65 loc) · 5.82 KB

README.md

File metadata and controls

116 lines (65 loc) · 5.82 KB

previous 100 days of code next

Take A Guess


Take A Guess

Table of Contents


#100DaysOfCode

Day 30: November 22, 2021

  • To renew and reinforce my understanding of pure JavaScript, I've been taking courses about JavaScript fundamentals.

  • A course I enjoyed was Just JavaScript by Dan Abramov and Maggie Appleton.

  • Another course I'm enjoying is Jonas Schmedtmann's The Complete JavaScript Course, which has a project about DOM manipulation that is the basis of this number guessing game.

  • In Take A Guess, users guess a number between 1 and 20, and the DOM is manipulated based on the nature of the guess.


Installation

1. Git clone and cd into the repo folder:

git clone git@github.com:emjose/take-a-guess.git && cd take-a-guess

2. Run the command:

open index.html

Live Site

Live Site

Take A Guess is a progressive web app.

• The user is informed if their guess is correct or incorrect.

• Correct guesses set the high score, while incorrect guesses decrease the score.


Resources


Let's Connect!

Twitter badge Linkedin badge Medium badge Instagram badge Gmail badge Portfolio badge Github badge

Back to Top