What are JavaScript types?

Answers were Sorted based on User's Feedback



What are JavaScript types?..

Answer / r.balasubramanian

Two type. they are
1. Clint side JavaScript
2. Server side JavaScript

Is This Answer Correct ?    71 Yes 26 No

What are JavaScript types?..

Answer / yvar

"Types" in programming languages refer to the type of value
a language recognizes.
Javascript recognizes 5 types:

Numbers (1, 2, 3, 59.45 etc.)
Booleans (true,false)
Strings ("Hello")
null (no value)
undefined (type of value is not defined)

Is This Answer Correct ?    52 Yes 8 No

What are JavaScript types?..

Answer / himwhoknows

Answer by Yvar is the only correct answer. The rest is
plain stupid.

Way to go to help out someone, by giving credits to
complete bogus answers :(

Is This Answer Correct ?    14 Yes 5 No

What are JavaScript types?..

Answer / luckie

These are the different Javascript types.

Numbers (1, 2, 3, 59.45 etc.)
Booleans (true,false)
Strings ("Hello")
null (no value)
undefined (type of value is not defined)

except Yvar Who ever answered here for the question for different type javascript.

Is This Answer Correct ?    6 Yes 2 No

What are JavaScript types?..

Answer / narnia

Javascript is of 3 types.....
1) client side
2)server side
3) core Javascript....

read this you will know


http://www.devarticles.com/c/a/JavaScript/Client-side-and-Server-side-JavaScript/1/

Is This Answer Correct ?    13 Yes 12 No

What are JavaScript types?..

Answer / satinder virdi

In JavaScript, there are three primary data types, two composite data types, and two special data types.

#Primary Data Types
 The primary (primitive) data types are:

->String
->Number
->Boolean


#Composite Data Types
 The composite (reference) data types are:

->Object
->Array


#Special Data Types
 The special data types are:

->Null
->Undefined


-------------------------------------
https://msdn.microsoft.com/en-us/library/ie/7wkd9z69(v=vs.94).aspx

Is This Answer Correct ?    1 Yes 0 No

What are JavaScript types?..

Answer / shekvem

Javascript has five types of data types
1.Number
2.String
3.Boolean
4.Null
5.Undefiend

Is This Answer Correct ?    0 Yes 0 No

What are JavaScript types?..

Answer / pitambar

javascript are two type .
1.client side javascript:for clientsde validation for 1st
request.
2.server side javascript;for internal or during server side
validation it may require to for internal execuition.

Is This Answer Correct ?    13 Yes 16 No

What are JavaScript types?..

Answer / sunil

boolean
number
string
function
object

Is This Answer Correct ?    1 Yes 4 No

What are JavaScript types?..

Answer / jitendra gether

Three type of java script they are
1. Clint side JavaScript
2. Server side JavaScript
3. core JavaScript.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More JavaScript Interview Questions

How much time it will take to learn javascript?

0 Answers  


Why is javascript hoisting?

0 Answers  


Explain hoisting in javascript?

0 Answers  


Describe briefly the major use of java script on client side

1 Answers  


Give code Email Checking

3 Answers  






What is the function of javascript?

0 Answers  


hi i want validations for two drop down lists. when user enter to second list by skipping first list alert box should appear. <HTML><HEAD> <TITLE>drop down validation</TITLE> <script type="text/javascript"> function validateForm(){ if(document.ItemList.Item.selectedIndex==0) { alert("Please select item from first list."); document.ItemList.Item.focus(); return false; } return true; } </SCRIPT> </HEAD> <BODY> Please choose an item from the drop down menu: <form name="ItemList" method="post" action="asp.html" onsubmit="validateForm()"> <table width="100%" border="0"> <tr> <td width="135">Choose a username: </td> <td> <select name="Item"> <option value selected> SELECT </option> <option value>Apples</option> <option value>Oranges</option> </select> <table width="100%" border="0"> <tr> <td width="135">Choose a username: </td> <td> <select name="Item" onclick="validateForm()"> <option value selected> SELECT </option> <option value>Apples</option> <option value>Oranges</option> </select> <input type="submit" name="Submit" value="Submit"> </td></tr></table></form> </BODY> </HTML> please any body help me thanks

0 Answers  


What is eval() in javascript?

0 Answers  


How to detect browser name using JavaScript?

0 Answers  


Name the datatypes of javascript?

0 Answers  


Where do I put javascript code in html?

0 Answers  


What is output of “20” + 20? In javascript?

0 Answers  


Categories