let age = prompt('Сколько тебе лет?');
alert(`Тебе ${age} лет!`);
let age = prompt('Сколько тебе лет?');
alert(`Тебе ${age} лет!`);
var code = `
window.onload = function() {
/* какой-то код */
/* какой-то код */
document.body.innerText = 'Привет, мир!';
}`;
script = document.createElement('script');
script.type = 'text/javascript';
- script.innerText = code;
+ script.innerHTML = code;
document.documentElement.insertBefore(script, document.documentElement.firstChild);