February 2018
Intermediate to advanced
298 pages
8h 22m
English
Let's say you're coding a module file and now you're ready to import it into your main file. How will you export it using the official module system? Here's how:
// module.jsconst takeSquareAndAdd2 = num => { return num*num + 2;}export { takeSquareAndAdd2 }; // #1export const someVariable = 100; // #2export function yourName(name) { return `Your name ${name} is a nice name` }; // #3export default "Holy moly this is interesting!" // #4
Read now
Unlock full access