1 export var exportedVar = "exported var";
2 export function exportedFunction() {
3 return "exported function";
5 export let exportedLet = "exported let";
6 export const exportedConst = "exported const";
8 var notExportedVar = "not exported var";
9 function notExportedFunction() {
10 return "not exported function";
12 let notExportedLet = "not exported let";
13 const notExportedConst = "not exported const";