Monthly archives: January, 2023

Javascript–Variables and Data Types

Javascript is a Dynamically Typed language meaning the Interpreter assigns variables a type at runtime based on the type of data in the variable at that time. Javascript is one of the dynamically typed or untyped languages. How do we declare the variable in Javascript. Very simple!! No need to mention the type of variable. …

IDE for Javascript and Typescript

Anyone coming from Java background mostly will be using either Eclipse or IntelliJ Idea. For automation testing with tools like Cypress and Playwright with Javascript it would be good to use Microsoft Visual Studio Code. My favourite IDE for automation with Javascript is VS Code. Let us see how to start using it. Download VS …

Javascript–first program

Okay, let’s start writing Javascript!! There are two code snippets here, first one is JavaScript and second one is HTML. Write both these in a Notepad and save as index.html and simplejs.js. Keep both in the same folder and open the html file in a browser. When the file opens, it will be blank. Right …

Learning Javascript and Typescript for Test Automation

In the Information technology industry, there is a constant upgradation of tools and technologies every year. As IT professionals, we need to upgrade ourselves as well. For example, most of the big businesses are moving towards cloud because of its high scalability and low cost. Devops and DevSecOps have become de facto standards. In the …