CodeNewbie Community 🌱

Discussion on: Is JavaScript the only programming language that works in the browser?

Collapse
 
chrisjo93 profile image
Chris Johnson

Nope, just about all languages can run on the browser with a little fiddling. As Daniel was saying languages typically get transpiled into JavaScript anyway.

const modalMarkup = `
`; // 2. Append the markup string to the end of the document body document.body.insertAdjacentHTML('beforeend', modalMarkup);