{} --- const x = { foo: "bar" }; /** * @fileoverview Main application object for a CLI. * @author Nicholas C. Zakas */ /** * JSDoc * @param {string} foo * @returns {string} something. */ /* block comment */ // line comment /* block comment 2 */ if (foo) { bar(); // line comment 2 /* * Block comment 3 */ while (something) { /* block comment 4 */ /* block comment 5 */ } } --- const x = { foo: "bar" }; /** * @fileoverview Main application object for a CLI. * @author Nicholas C. Zakas */ /** * JSDoc * @param {string} foo * @returns {string} something. */ /* block comment */ // line comment /* block comment 2 */ if (foo) { bar(); // line comment 2 /* * Block comment 3 */ while (something) { /* block comment 4 */ /* block comment 5 */ } }