Skip to content

Instantly share code, notes, and snippets.

@alexandrespmg
Created December 10, 2023 20:33
Show Gist options
  • Save alexandrespmg/c971ec1960884be543e675beac5b7b26 to your computer and use it in GitHub Desktop.
Save alexandrespmg/c971ec1960884be543e675beac5b7b26 to your computer and use it in GitHub Desktop.
farm.js
var spearCount = document.getElementById('spear').innerText;
var swordCount = document.getElementById('sword').innerText;
var spyCount = document.getElementById('spy').innerText;
var lightCount = document.getElementById('light').innerText;
var message = 'Spear: ' + spearCount +
'\nSword: ' + swordCount +
'\nSpy: ' + spyCount +
'\nLight: ' + lightCount;
alert(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment