Created
October 30, 2018 09:22
-
-
Save alpgul/c47d4eea5cb6e96168ad99419d45e0e2 to your computer and use it in GitHub Desktop.
JavaScript Output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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