Microsoft Ajax library for Boolean Extension

Source: Internet
Author: User
ArticleDirectory
    • Boolean. parse function

Microsoft Ajax library adds a static method to a Boolean object to expand its functions:

Boolean. parse function

Converts the string representation of a logical value to itsBooleanEquivalent object. This function is static and can be called without creating an object instance.

UseParseA function can create a Boolean Value Based on the string representation.  ValueThe parameter must be "true" or "false" (case-insensitive ). A string can contain spaces. If the string cannot be converted to a Boolean value, an exception is thrown.

/*Paramvalue: true or false string representation return: Boolean value corresponding to the value parameter (true or false)*/VaRBooleanvar = Boolean. parse ("true ");

ExampleCode:

VaRA =NewBoolean (True);If(A =True) {Alert ("A = true");}Else{Alert ("A = false");}VaRB = Boolean. parse ("true");If(B =True) {Alert ("B = true");}Else{Alert ("B = false");}

 

Related Article

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.