Function: h2()
h2(
title
, ...contents
):string
Function to create a level 2 heading.
Parameters
• title: string
The title of the heading.
• ...contents: string
[]
The contents of the section.
Returns
string
The markdown heading, with the contents section below it.
Example
console.log(h2('Heading 2', 'This is the contents of the section.'));
// Prints:
//
// ## Heading 2
//
// This is the contents of the section.