typeof usage in JS

Source: Internet
Author: User

The variables in JS are loosely typed (i.e., weakly typed) and can be used to hold any type of data.

typeof can be used to detect the data type of a given variable, the possible return value:

1. ' Undefined '---this value is undefined;

2. ' Boolean '---This value is a Boolean value;

3. ' String '---This value is a string;

4. ' Number '---this value is numeric;

5. ' Object '---This value is an object or null;

6. The ' function '---this value is a functional.

JS Code:

var aa = ' test string ';   Alert (typeof AA);  // ' string '    alert (typeof );  // ' number '  

typeof usage in JS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.