C++Data StructuresAlgorithmsCompetitive ProgrammingJavaPythonMicroprocessorsGraph TheoryComputer System ArchitectureMachine LearningArtificial IntelligenceData Structures in PythonJavascriptMySQLAndroid DevelopmentAlgorithms in PythonCoding InterviewData ScienceData Structures in JavaObject Oriented DesignLinked ListBinary Trees

Javascript

Getting Started

Data Types And Variables

Arrays

Functions

Objects in Javascript

Getting Started with Javascript

Learn Web Development using HTML,CSS,Javascript,PHP in this course from scratch. We will start off with basics of Javascript first in this JavaScript Playlist and then we will start making different components of website with Frontend and will also use PHP for Backend. No Previous programming knowledge required. We will use Visual Studio Code and install some useful extensions and then we will connect HTML with JS file and run some code!!

HTML Code


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>ThinkX Academy: Learn to Code</title>
  </head>
  <body>
    <script src="App.js"></script>
  </body>
</html>

Javascript Code


console.log("Hello Thinkers!!");