Skip to content
Jerry Wu edited this page Apr 5, 2020 · 4 revisions

Header

inline code

Code block

// Line comment
const foo = 'bar';

/**
 * Block comment
 */
function greetPerson(name) {
  return `Hello ${name}.`; // inline comment
}

const reallyLongFunctionNameToTestLineWrapping = reallyLongParameterNameToTestLineWrapping => console.log(`Hello ${reallyLongParameterNameToTestLineWrapping}`);

Image

Clone this wiki locally