Our Recommendation for You Search your Query, You can find easily. for example search by book name or course name or any other which is related to your education

label name


























PHP

JS Home

JAVASCRIPT

JavaScript Tutorial

JavaScript is the programming language of HTML and the Web.
JavaScript is easy to learn.
This tutorial will teach you JavaScript from basic to advanced.

Example

<!DOCTYPE html>
<html>
<body>

<h2>My First JavaScript</h2>

<button type="button"
onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>

<p id="demo"></p>

</body>
</html>