ShoPo ~ Js and Places to learn!

sumanta_thefrontdev

SumantaWeb

Posted on February 1, 2022

ShoPo ~ Js and Places to learn!

Enter fullscreen mode Exit fullscreen mode

ShoPo ~ Js and Places to learn!

Overview

JavaScript, often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. Over 97% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. Wikipedia

Javascript is one of the building blocks of the web and is used to add functionalities to your web pages. One of them can be shown just now!

<button id="btn">Alert!</button>

<script>
document.getElementById("myBtn").addEventListener("click", function(){
alert("You clicked a button!")
});
</script>
Enter fullscreen mode Exit fullscreen mode

Here you can click a button. It would get noticed by js and run a function!

Places to learn

w3schools
Codecademy
YouTube - Programming with Mosh

YouTube - freeCodeCamp.org

💖 💪 🙅 🚩
sumanta_thefrontdev
SumantaWeb

Posted on February 1, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related