Skip to content

Instantly share code, notes, and snippets.

@ibratoev
Created September 17, 2016 13:37
Show Gist options
  • Save ibratoev/8f380ba57bd64f9afe27c22c8e7ee6bc to your computer and use it in GitHub Desktop.
Save ibratoev/8f380ba57bd64f9afe27c22c8e7ee6bc to your computer and use it in GitHub Desktop.
/**
* Checks if a book is read.
* @param {string} book - The title of the book.
* @returns {boolean} True if the book is read; false otherwise.
*/
function isRead(book) {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment