JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is complimentary to and integrated with Java. JavaScript is very easy to implement because it is integrated with HTML. It is open and cross-platform.
In this article we will discuss about below topics.
- Is JavaScript case sensitive
- Comments in JavaScript
- Data types in JavaScript
Is JavaScript case sensitive
Yes, JavaScript is case sensitive programming language. Variable names, keywords, methods, object properties and event handlers all are case sensitive.
Alert Function
Comments in JavaScript
There are 2 types of comments in JavaScript.
Data types in JavaScript
The following are the different data types in JavaScript
numbers - 1, 2, 3.4
boolean - true / false
string - "TestString", 'TestString'
Summary
Post a Comment