Created
September 17, 2016 13:37
-
-
Save ibratoev/8f380ba57bd64f9afe27c22c8e7ee6bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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