search
HomeWeb Front-endJS TutorialDetailed introduction to the basics of getting started with javascript object-oriented_js object-oriented

What is an object

To put it simply, objects in programming languages ​​are simplifications of things in reality. For example, a person is an object, but it is difficult for a programming language to fully describe such a complex object. So we must make simplifications. First, simplify people into a combination of attributes and behaviors, and then retain only a few attributes and behaviors that are meaningful to the program. For example, if we make a program that counts the heights of people in a certain school, then we can omit people's behaviors in this program, retain only behaviors, and only retain the attribute height. In this way, we get the simplest object.

JavaScript String Object

Properties of Object
In fact, we have already used objects in HTML DOM before. For example, we know that DOM nodes have some information, such as nodeName, nodeType, etc. In fact, this information is the properties of the node object. Let's take a string as an example to look at the properties of the object.

String attributes
var s = "I have 7 characters"; After defining the string s, we have a string object, and we can access its length attribute ( length), this property does not need to be defined by us, it is a built-in property. The access method is as follows:

s.length Click the button below to see the length of the string.

alert(s.length)
Methods (behaviors) of string objects
Similarly, objects can also have behaviors. Taking the string object as an example, we can let the string return to a certain position letters or words, this is an action. You can use the buttons at the back to simply experience the various properties and methods of strings. At the end of this article, the use of each method will be explained in detail.

Copy code The code is as follows:

> ;

Use the length property of the string to be the length of the string.

alert(str.length)
Use the charAt method to return the character at the specified position.

alert(str.charAt(0))
alert(str.charAt(1))

substring method intercepts a substring from a string.

alert(str.substring(0,2))
indexOf returns the position of the specified character or string in the string, or -1 if the character does not exist.

alert(str.indexOf('symbol')
lastIndexOf method returns the position of the last occurrence of a character in a string.

date object

Example JavaScript date code
Let’s first look at a piece of JS code that uses the date object. Click the buttons below to see the values ​​of each variable.

Copy code The code is as follows:



Create a new Date object
We use the following statement to Create a Date object.

var today = new Date(); After execution, the created Date object is saved in the today variable. Method (behavior) of the string object
JavaScript date object query (get) method
JavaScript date object setting (set) method
JavaScript date object conversion (to) method
JavaScript Date object application example - clock code
This code is transferred from w3schools. com.





Array object

Create a JavaScript array
Copy code The code is as follows:




Example JavaScript array code

The following is a simple Using the JS code of the array, you can click the button behind to observe the value of each variable.
Copy code The code is as follows:


arr[n] returns the element at the specified position in the array. n is called the subscript, starting from 0. You can click the button below to view the elements at each position of arr.
Copy code The code is as follows:

alert(arr[0]) //Position 0, That is, the first element
alert(arr[1])
alert(arr[2])
alert(arr[3])

From the above code you can As you can see, after calling several methods of the array, we got the variables joinArr, bigArr, and sortArr. These methods will be introduced in detail later. You can first observe the values ​​of variables to guess what these methods do.

Math object
Example JavaScript Math code

Copy code The code is as follows:


Let’s first save the value of Math.PI in num, which is a JS built-in constant. You can click the button below to view its value.
alert(num)
rNum is the rounded value of num.

alert(rNum)
random method generates a random value between 0-1. Try clicking the button below a few more times and you will find that the numbers you get will continue to change.

alert(Math.random())

Function object

In JavaScript, functions are also objects. When we use the following statement to define a function, it is actually a definition An object of type Function.
Copy code The code is as follows:

function add(a,b){
return a b;
}

To illustrate this problem, we can use the constructor of Function to define an add function:
Copy code The code is as follows:



The function defined using this method is exactly the same as the function above, but this syntax is more troublesome and is generally not used.
(Function) call method of Function object
call is a very useful method. It can control the running environment of the function, that is, control the object pointed to by this inside the function. The following example can illustrate this problem:
function whatsThis(){ alert(this); }When we call the above function, we will see that this points to the window. Try it out:
whatsThis()
But if call is used, we can control the pointing of this inside the function, for example:
whatsThis.call(document)()
The above code uses the call method of the function object to point this inside the function to the document.
If the original function needs to accept parameters, such as the add function, you can use the following form:
add.call(document,1,2) In other words, the first parameter of call is bound to this Object, and 1 and 2 are the parameters that the original add function needs to accept.
(Function) Apply method of Function object
The method of using apply is basically the same as that of call, except that the parameters are passed in the form of an array, or the add function is used as an example:
add.call(document,[ 1,2]) It can be seen that the two numeric parameters that the original function add needs to accept are passed into apply in the form of an array.
(Function) caller attribute of Function object
function whoCalls(){ alert(whoCalls.caller); } function SheCalls(){ whoCalls(); }whoCalls()SheCalls()
Use the caller attribute, You can find out who called the current function. Note that the caller is only valid inside the function body.
(Function) The arguments attribute of the Function object
Javascript functions can accept any number of parameters, so when defined, the number of parameters does not limit the function's ability. In a function, we can use arguments to access the parameters passed into the function, for example:
function howmany(){ var num = arguments.length; alert(num); } The howmany function will output the number of parameters passed to the function. , click on the buttons below to try it out.
howmany(1,2,3,4)howmany(1,2,3,4,5,6,7,8)
Function arguments.callee
We already know that function will have arguments attribute, Arguments.callee is the function currently being executed, for example:
function whoAmI(){ alert(arguments.callee); }whoAmI()
Executing the above function will display the source code of the current function. Of course, we can call callee again, which is mainly used for anonymous function recursion.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何使用Go语言实现面向对象的事件驱动编程如何使用Go语言实现面向对象的事件驱动编程Jul 20, 2023 pm 10:36 PM

如何使用Go语言实现面向对象的事件驱动编程引言:面向对象的编程范式被广泛应用于软件开发中,而事件驱动编程是一种常见的编程模式,它通过事件的触发和处理来实现程序的流程控制。本文将介绍如何使用Go语言实现面向对象的事件驱动编程,并提供代码示例。一、事件驱动编程的概念事件驱动编程是一种基于事件和消息的编程模式,它将程序的流程控制转移到事件的触发和处理上。在事件驱动

解析PHP面向对象编程中的享元模式解析PHP面向对象编程中的享元模式Aug 14, 2023 pm 05:25 PM

解析PHP面向对象编程中的享元模式在面向对象编程中,设计模式是一种常用的软件设计方法,它可以提高代码的可读性、可维护性和可扩展性。享元模式(Flyweightpattern)是设计模式中的一种,它通过共享对象来降低内存的开销。本文将探讨如何在PHP中使用享元模式来提高程序性能。什么是享元模式?享元模式是一种结构型设计模式,它的目的是在不同对象之间共享相同的

go语言是面向对象的吗go语言是面向对象的吗Mar 15, 2021 am 11:51 AM

go语言既不是面向对象,也不是面向过程,因为Golang并没有明显的倾向,而是更倾向于让编程者去考虑该怎么去用它,也许它的特色就是灵活,编程者可以用它实现面向对象,但它本身不支持面向对象的语义。

python是面向对象还是面向过程python是面向对象还是面向过程Jan 05, 2023 pm 04:54 PM

python是面向对象的。Python语言在设计之初,就定位为一门面向对象的编程语言,“Python中一切皆对象”就是对Pytho 这门编程语言的完美诠释。类和对象是Python的重要特征,相比其它面向对象语言,Python很容易就可以创建出一个类和对象;同时,Python也支持面向对象的三大特征:封装、继承和多态。

PHP面向对象编程入门指南PHP面向对象编程入门指南Jun 11, 2023 am 09:45 AM

PHP作为一种广泛使用的编程语言,已成为构建动态网站和网络应用程序的首选语言之一。其中,面向对象编程(OOP)的概念和技术越来越受到开发者的欢迎和推崇。本篇文章将为读者提供PHP面向对象编程的入门指南,介绍OOP的基本概念,语法和应用。什么是面向对象编程(OOP)?面向对象编程(Object-OrientedProgramming,简称OOP),是一种编程

如何使用Go语言实现面向对象的数据库访问如何使用Go语言实现面向对象的数据库访问Jul 25, 2023 pm 01:22 PM

如何使用Go语言实现面向对象的数据库访问引言:随着互联网的发展,大量的数据需要被存储和访问,数据库成为了现代应用开发中的重要组成部分。而作为一门现代化、高效性能的编程语言,Go语言很适合用来处理数据库操作。而本文将重点讨论如何使用Go语言实现面向对象的数据库访问。一、数据库访问的基本概念在开始讨论如何使用Go语言实现面向对象的数据库访问之前,我们先来了解一下

面向对象是啥意思面向对象是啥意思Jul 17, 2023 pm 02:03 PM

面向对象是软件开发方法,一种编程范式。是一种将面向对象的思想应用于软件开发过程并指导开发活动的系统方法。这是一种基于“对象”概念的方法论。对象是由数据和允许的操作组成的包,它与目标实体有直接的对应关系。对象类定义了一组具有类似属性的对象。面向对象是基于对象的概念,以对象为中心,以类和继承为构建机制,认识、理解和描绘客观世界,设计和构建相应的软件系统。

Python中的面向对象编程Python中的面向对象编程Jun 10, 2023 pm 05:19 PM

Python作为一种高级编程语言,在众多编程语言中占有举足轻重的地位。它的语法简单易学,拥有各种强大的编程库,被广泛应用于数据处理、机器学习、网络编程等领域。而其中最重要的一点便是Python完美支持面向对象编程,本文将重点阐述Python中的面向对象编程。一、面向对象编程的基本概念在面向对象的编程语言中,数据和方法被封装在对象的内部。这使得对象能够独立地进

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),