Skip to content

Instantly share code, notes, and snippets.

@atrunelle
Last active June 26, 2018 14:29
Show Gist options
  • Save atrunelle/b57aff9c41778520325b81f5c0270ba5 to your computer and use it in GitHub Desktop.
Save atrunelle/b57aff9c41778520325b81f5c0270ba5 to your computer and use it in GitHub Desktop.
Check strings equals - JSdoc
// JSDOC
/**
* Check 2 strings are equals
* @param {string} a
* @param {string} b
* @return {boolean}
*/
function isEqual(a, b) {
return a === b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment