2019-07-12

JavaScript: The Language of Web Browsers

You can run JavaScript in any modern browser console. JavaScript adds dynamism and interactivity to your web pages.

This is an example of JavaScript code:


let gallery = "";

const fetchPhotos = async () => {
    const res = await fetch("/js/pix.json");
    const photos = await res.json();

}

fetchPhotos();

More Info

Back