Skip to content

Instantly share code, notes, and snippets.

View Higokian's full-sized avatar

Jason Ritter Higokian

View GitHub Profile
@Higokian
Higokian / README-Template.md
Created February 10, 2024 01:24 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started

@Higokian
Higokian / whaleTranslator.js
Created June 6, 2020 22:01
Whale translator - Translates words into wale language
// Create input variable and necessary
// arrays
let input = 'hello, human';
const vowels = ['a', 'e', 'i', 'o', 'u'];
let resultArray = [];
// Create for loop to sift through each letter
// of the input and compare them to vowels
// (whale letters)
for(i = 0; i < input.length; i++) {
// This is a simple rock, paper, scissors game.
// Figure out the secret cheat code to win everytime!
// Author: Jason Ritter
// Last updated: 05/30/2020
// Start date: 05/30/2020
// Get the users choice
const getUserChoice = userInput => {