Tag Archives: JavaScript

Compare Two Lists

In dart programming, Lists are used for the collection of data. We declare just variables instead of declaring a separate variable for each value of the collection. Lists are indexable so that we access the values using index ( starts from 0 ). In this article, we will see how to compare two Lists in the dart.  For… Read More »

Developer console in web browsers

Code is prone to errors, and as a human, it’s natural to make mistakes. In the browser, errors are not visible to users by default, which makes it challenging to identify and fix issues in scripts. To view errors and obtain useful information about scripts, browsers come with built-in “developer tools.” Chrome and Firefox are popular choices among… Read More »

JavaScript Manuals and specifications

This is a tutorial designed to help you learn the language gradually, but you’ll eventually need additional resources. 1. Specification The ECMA-262 specification is the most detailed and formal source of information about JavaScript. It defines the language. However, it can be difficult to understand initially and is not meant for everyday use. A new version of the… Read More »

An Introduction to JavaScript

JavaScript was initially created to “make web pages alive”. These JavaScript program are called as scripts. These can be written in HTML of web page and will simply run when the page loads. Scripts don’t complile. JavaScript is different from another language called Java. Initially, it was called “LiveScript.” Since Java was very popular at that time, it… Read More »