Skip to content

Instantly share code, notes, and snippets.

View stevanadrien's full-sized avatar
👋

Stevan Adrien stevanadrien

👋
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>javasc</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="timeContainer">
<div id="timeDisplay">00:00:00</div>
<button id="startButton" class="timerButton">Start</button>
@stevanadrien
stevanadrien / index.js
Created April 10, 2022 08:56
ROCK PAPER SCISSOR GAME WITH HTML,CSS,AND JS
class Start {
constructor() {
this.playerName = "Player";
this.botName = "BOT";
this.playerOption;
this.botOption;
this.winner = "";
}
get getBotOption() {
return this.botOption;