Javascript Archives - Page 2 of 2 -

javascript variables and data types

javascript variables and data types In this article we will learn about the javascript variables and data types. So must read the full article. JavaScript Variables Variables are containers for storing data (values). In this example, x, y, and z, are variables, declared with the var keyword: There are 3 ways to declare a JavaScript … Read more

concept of JavaScript?

concept of JavaScript

JavaScript Introduction JavaScript is a cross-platform, object-oriented scripting language used to make web pages interactive (e.g., having complex animations, clickable buttons, popup menus, etc.). JavaScript contains a standard library of objects, such as Array, Date, and Math, and a core set of language elements such as operators, control structures, and statements. In this blog we … Read more

client-side scripting language and server-side scripting

client-side scripting language and server-side scripting

Introduction to Scripting Languages All scripting languages are programming languages. The scripting language is basically a language where instructions are written for a run time environment. They do not require the compilation step and are rather interpreted. It brings new functions to applications and glue complex system together. A scripting language is a programming language … Read more