-
Notifications
You must be signed in to change notification settings - Fork 20
Home
Jerry Wu edited this page Apr 5, 2020
·
4 revisions
inline code
// Line comment
const foo = 'bar';
/**
* Block comment
*/
function greetPerson(name) {
return `Hello ${name}.`; // inline comment
}
const reallyLongFunctionNameToTestLineWrapping = reallyLongParameterNameToTestLineWrapping => console.log(`Hello ${reallyLongParameterNameToTestLineWrapping}`);