DEV Community

SumantaWeb
SumantaWeb

Posted on

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

Oldest comments (0)