Skip to content

Instantly share code, notes, and snippets.

View richwednesday's full-sized avatar
😀
exploring

Joseph Iwok richwednesday

😀
exploring
View GitHub Profile
@richwednesday
richwednesday / index.js
Last active September 24, 2024 07:35
Hangman Game you can play from the command line written in Node js
let targetWord = '';
let dashes = '';
let dArray = [];
let failCount = 0;
const categories = {
clubs: ['Manchester United', 'Barcelona', 'Real Madrid', 'Bayern Munich',
'Manchester City', 'Arsenal', 'Chelsea', 'Liverpool', 'Juventus', 'Tottenham Hotspur',
'Borussia Dortmund', 'Atletico Madrid', 'Inter Milan', 'West Ham United', 'Roma',
'Napoli', 'Everton', 'Newcastle United'],
@richwednesday
richwednesday / String drills
Created December 7, 2016 03:35
Links to works on JavaScript String Drills on Thinkful Front end web dev course
http://jsbin.com/cipaxex/edit?js,console
https://jsbin.com/sideniv/edit?js,console
https://jsbin.com/gasarod/edit?js,console