JavaScript OOP object-oriented Introduction _js Object Oriented

Source: Internet
Author: User
The OOP language gives us the ability to customize objects and variable types.

Object Oriented Programming
JavaScript is an object-oriented programming language (OOP). The OOP language gives us the ability to define our own objects and variable types. Objects have properties and methods.

Property
Property refers to the value associated with an object.

Example:
Copy Code code as follows:

<script type= "Text/javascript" >
var txt= "Hello world!"
document.write (txt.length)//Use the Length property of the string object to calculate the number of characters in the string, output: 12
</script>

Method
Method refers to the behavior (or functionality that can be done) that an object can perform.
Copy Code code as follows:

<script type= "Text/javascript" >
var str= "Hello world!"
document.write (Str.touppercase ())//uses the toUpperCase () method of the string object to display the uppercase text. Output as: HELLO world!
</script>
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.