mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-12 09:44:19 +02:00
Fixed typos in README for Typing game
Update Typing game README.md
This commit is contained in:
@@ -173,10 +173,10 @@ const quotes = [
|
|||||||
'Education never ends, Watson. It is a series of lessons, with the greatest for the last.',
|
'Education never ends, Watson. It is a series of lessons, with the greatest for the last.',
|
||||||
];
|
];
|
||||||
// store the list of words and the index of the word the player is currently typing
|
// store the list of words and the index of the word the player is currently typing
|
||||||
const words = [];
|
let words = [];
|
||||||
let wordIndex = 0;
|
let wordIndex = 0;
|
||||||
// the starting time
|
// the starting time
|
||||||
let startTime = DateTime.getTime();
|
let startTime = Date.now();
|
||||||
// page elements
|
// page elements
|
||||||
const quoteElement = document.getElementById('quote');
|
const quoteElement = document.getElementById('quote');
|
||||||
const messageElement = document.getElementById('message');
|
const messageElement = document.getElementById('message');
|
||||||
|
Reference in New Issue
Block a user