This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
<script type="module"> import message from "./message.js"; </script>
export const name = "Jesse"; export const age = 40;
const name = "Jesse"; const age = 40; export {name, age};
const message = () => { const name = "Jesse"; const age = 40; return name + ' is ' + age + 'years old.'; }; export default message;
Import named exports from the file person.js:
import { name, age } from "./person.js";
Import a default export from the file message.js:
import message from "./message.js";
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
JavaScript icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon