
Install Node.js and set the enrollment variable to include its location on Windows. Open the command prompt, verify installation, and execute a JavaScript file to run server-side code.
Write your first JavaScript code, save it with a .js extension, and run it from the command prompt to see console.log output, using semicolons and // and /* */ comments.
Master multi-condition handling in JavaScript by using if and else if to check negative, zero, and positive numbers, including even checks, and learn how condition order affects results.
Create a class method that accepts a month number and validates it, ensuring values are between 1 and 12. Then determine the number of days in that month, including February.
Create a method taking five marks (physics, chemistry, biology, mathematics, computers), validate 0–100, compute the percentage, and assign grades F, D, C, B, A at thresholds 40, 60, and 70.
Master while loops in JavaScript by comparing initialization, condition checks, and increment or decrement steps, and printing tables or patterns with console logs.
Learn how the break keyword exits a for loop when a condition is met, preventing remaining values from printing, as shown by stopping at 50.
Explore JavaScript string handling by creating strings, measuring length, and locating substrings using indexOf and lastIndexOf, while understanding string properties, methods, and camelCase naming.
Explore string handling in javascript: convert to uppercase or lowercase, concatenate with or without spaces, access characters by index, find length, and reverse a string with a backward loop.
Create two string handling methods that compare the last ten characters of two strings with case-insensitive matching, and allow a numeric parameter to compare that many characters from the end.
Practice exercise on string handling to check if a string is a palindrome. Create a method that takes a string and determines if it reads the same from both ends.
Develop a simple method that accepts two string arguments, concatenates them into a single string, and then computes its length. Use the example hello and world to display hello world.
Practice exercise to write a simple program that finds the smallest, second smallest, and second largest values from a set of numbers, using the example 3, 45, 234, and 456.
Discover how element locators identify and locate web page elements, with CSS and XPath examples. Learn how locators locate elements uniquely and how to write and use them in automation.
What is JavaScript ?
Javascript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented capabilities.
Course Include
JavaScript Setup - Node JS
JavaScript Basics
Basic programming practice
Lots of programming exercise
Use of JS in automation tools like (Protractor)