Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 195 Bytes

section6.1.md

File metadata and controls

9 lines (7 loc) · 195 Bytes

Section 6.1: Exporting with ES6 syntax

This is the equivalent of the other example but using ES6 instead.

export function printHelloWorld() {
  console.log("Hello World!!!");
}