Skip to content

Instantly share code, notes, and snippets.

@alpgul
Created October 30, 2018 09:22
Show Gist options
  • Save alpgul/c47d4eea5cb6e96168ad99419d45e0e2 to your computer and use it in GitHub Desktop.
Save alpgul/c47d4eea5cb6e96168ad99419d45e0e2 to your computer and use it in GitHub Desktop.
JavaScript Output
//Using innerHTML
document.getElementById("demo").innerHTML = 5 + 6;
//Using document.write()
document.write(5 + 6);
//Bir HTML belgesi yüklendikten sonra document.write () kullanmak, mevcut tüm HTML’leri siler:
//Using window.alert()
window.alert(5 + 6);
//Using console.log()
console.log(5 + 6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment