Skip to content

Instantly share code, notes, and snippets.

@trtpg
trtpg / 8ball.js
Created May 2, 2017 00:04 — forked from jnf/8ball.js
var answers = [
"Yes",
"No",
"It was the tofu",
"Call your mom",
"IDK"
];
function shakeEightBall () {
var rando = Math.floor(Math.random() * 5);