JavaScript Tutorial
3.65K subscribers
302 photos
17 links
šŸ•¹ JavaScript is the 
Programming Language 
for the Web.

šŸ•¹ JavaScript can update
and change both 
HTML and CSS.

šŸ•¹ JavaScript can calculate, 
manipulate and 
validate data.

Group
@js_group_tut

@javascript_tut
Download Telegram
šŸ“•Example: for #innerHTML
-----------------------------------

<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>

<script>
const txt = "Hello, World";

document.getElementById("demo").innerHTML = txt;

</script>
</body>
</html>

@javascript_tut