Coding Master
10.9K subscribers
288 photos
13 videos
220 files
3.09K links
ADMIN : @Coding_Master πŸ‘¨πŸΌβ€πŸ’Ό

Hello guys, I Created This Telegram Channel To Share Useful Content On Web Development & Programming.

πŸ‘‰ Free Ebooks
πŸ‘‰ Free Tools & Resources Links
πŸ‘‰ Free Projects Source Code

So Stay Tuned With Us & Keep Learning πŸ˜‰
Download Telegram
Join Our Facebook Page πŸ‘†πŸ‘†
1. Program to print hello world

<html>
<body>
<script type="text/javascript">
document.write("hello World");
</script>
</body>
</html>
2. Program to swap two strings.

<html>
<head>
<script> function swap()
{

var txt = document.getElementById('t1').value;
document.getElementById('t1').value = document.getElementById('t2').value; document.getElementById('t2').value = txt;

}

</script>
</head>
<body>

<input type="text" id="t1"> <input type="text" id="t2">
<br>
<input type="button" value="Swap" onclick="swap()">

</body>
</html>