search
HomeWeb Front-endJS TutorialIntroduction to the use of objects and arrays in the basics of JavaScript (3)_Basic knowledge

Javascript: Object
We have briefly introduced the object before. It is a thing that concentrates multiple data values ​​​​in one unit. It is accessed by name. It is an unordered attribute. gather.
1. Several ways to create objects
Copy code The code is as follows:

var empty = {} //Create an object with no properties.
var person = {name:"ben",age:22,sex:'male'}//Use direct quantities to create objects
var people = {{name:'Frank',age:21},{ name:'Mary',age:21},sex:'MAN'}// The elements of the object can be objects

2. Object attributes
Copy code The code is as follows:

var person = {}; //Create an object
person.name = "Frank"; // Add attribute
person.country = "china";
person.age = 22;
person.american = new Object(); //This attribute is an object
person.american.name = " Lisa";
person.american.country = "American";
person.american.age = 20;
function displayperson(personmore) //Print the above object
{
for( var p in personmore) //Enumeration loop
{
if(typeof(personmore[p]) == "object")//Judge the type
{
for(var o in personmore[ p])
{
document.write("American people :" o "t" personmore[p][o] "
");
}
document.write ("
");
continue;//End this cycle and proceed to the next cycle.
document.write("china people :" p "t" personmore[p] "< ;br />");
}
}
displayperson(person);//Call function
//Output china people :name Frank
//china people :country china
//china people :age 22
//American people :name Lisa
//American people :country American
//American people :age 20

3. To delete an attribute
use the delete operator
Copy the code The code is as follows:

delete person. american;//You can delete the object's attributes yourself
delete cannot delete the object.

4. hasOwnProperty() method and isPrototypeOf() method
In fact, these two methods, beginner friends may be the same as I learned here, they can’t understand them, but It doesn't matter, you can skip it. When we learn about inheritance, you will understand when you look back
.
4.1: The hasOwnProperty() method returns true if the object locally defines a non-inherited property with the name specified by a separate string parameter. Otherwise return false.
Copy code The code is as follows:

function House(price,area,developers)
{
this.price = price;
this.area = area;
this.developers = developers;
}
House.prototype.housevalue = function(){return this.price* this.area;}
function HouseSon(price,area,developers,city)
{
House.call(this,price,area,developers);
this.city = city;
}
HouseSon.prototype = new House(10000,80,"vanke");//Get the properties of House
delete HouseSon.prototype.price;//Delete
delete HouseSon.prototype.area;
delete HouseSon.prototype.developers;
HouseSon.prototype.container = function(){return "container" this.price * this.area;}
for(var i in HouseSon.prototype)
{
document.write(i "
");
}
var house = new HouseSon(20000,180,"vanke","shenzhen");
document .write(house.container() "
");
document.write(house.housevalue() "
");
document.write(house.hasOwnProperty ("housevalue") "
");//This is the prototype
document.write(house.hasOwnProperty("price") "
");//Local

Javascript: Array
An array is an ordered collection. Each element has a numeric position in the array and can be accessed using subscripts. Since javascript is a A non-data type language, so it can contain different types.
1. Creation of array
Copy code The code is as follows:

var array = [] //Array without any elements
var person = ["Frank",22,'male'];//Array with different elements
var value = 100;
var num = [value 12, value-23, value*2];//Supports expressions
//Of course, it can also be created using Array, which can have different types of parameters, which can be objects. Array etc.

2. Add, delete, and traverse arrays.
Since addition and traversal are relatively simple, I won’t give examples, but let’s talk about deletion!
Copy code The code is as follows:

function diaplayarray(arr) //Function to perform printing tasks
{
if(!arr)return;
for(var num =0;num{
document.write("Num is " arr[num ] "t");
}
document.write(" " "
");
}
var array = [2,32,14,57,6] ;
document.write(array.shift() "
"); //Delete the first one in the array and return the deleted value 2
document.write(array.pop() "
"); //Delete the last one in the array and return the deleted value 6
document.write(array.join("*") "
");/ /Concatenate the array elements with * to return a string 32*14*57
document.write(array.push(100) "
");//Add array elements
array.reverse ();//Reverse the order of array elements
diaplayarray(array);//Output Num is 100 Num is 5 Num is 4 Num is 3
array.splice(1,2,300,600);//From the second array Start deleting the first one (including the second one), and then go to the third one, followed by 300 and 600, which are the newly inserted values ​​
diaplayarray(array);//Output Num is 100 Num is 300 Num is 600 Num is 32

Summary: Comrades, thank you for your hard work...
That’s all about objects and arrays. Next, we will get to the javascript client soon.
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
使用PHP的json_encode()函数将数组或对象转换为JSON字符串使用PHP的json_encode()函数将数组或对象转换为JSON字符串Nov 03, 2023 pm 03:30 PM

JSON(JavaScriptObjectNotation)是一种轻量级的数据交换格式,已经成为Web应用程序之间数据交换的常用格式。PHP的json_encode()函数可以将数组或对象转换为JSON字符串。本文将介绍如何使用PHP的json_encode()函数,包括语法、参数、返回值以及具体的示例。语法json_encode()函数的语法如下:st

源码探秘:Python 中对象是如何被调用的?源码探秘:Python 中对象是如何被调用的?May 11, 2023 am 11:46 AM

楔子我们知道对象被创建,主要有两种方式,一种是通过Python/CAPI,另一种是通过调用类型对象。对于内置类型的实例对象而言,这两种方式都是支持的,比如列表,我们即可以通过[]创建,也可以通过list(),前者是Python/CAPI,后者是调用类型对象。但对于自定义类的实例对象而言,我们只能通过调用类型对象的方式来创建。而一个对象如果可以被调用,那么这个对象就是callable,否则就不是callable。而决定一个对象是不是callable,就取决于其对应的类型对象中是否定义了某个方法。如

使用Python的__contains__()函数定义对象的包含操作使用Python的__contains__()函数定义对象的包含操作Aug 22, 2023 pm 04:23 PM

使用Python的__contains__()函数定义对象的包含操作Python是一种简洁而强大的编程语言,提供了许多强大的功能来处理各种类型的数据。其中之一是通过定义__contains__()函数来实现对象的包含操作。本文将介绍如何使用__contains__()函数来定义对象的包含操作,并且给出一些示例代码。__contains__()函数是Pytho

使用Python的__le__()函数定义两个对象的小于等于比较使用Python的__le__()函数定义两个对象的小于等于比较Aug 21, 2023 pm 09:29 PM

标题:使用Python的__le__()函数定义两个对象的小于等于比较在Python中,我们可以通过使用特殊方法来定义对象之间的比较操作。其中之一就是__le__()函数,它用于定义小于等于比较。__le__()函数是Python中的一个魔法方法,并且是一种用于实现“小于等于”操作的特殊函数。当我们使用小于等于运算符(&lt;=)比较两个对象时,Python

详解Javascript对象的5种循环遍历方法详解Javascript对象的5种循环遍历方法Aug 04, 2022 pm 05:28 PM

Javascript对象如何循环遍历?下面本篇文章给大家详细介绍5种JS对象遍历方法,并浅显对比一下这5种方法,希望对大家有所帮助!

Python中如何使用getattr()函数获取对象的属性值Python中如何使用getattr()函数获取对象的属性值Aug 22, 2023 pm 03:00 PM

Python中如何使用getattr()函数获取对象的属性值在Python编程中,我们经常会遇到需要获取对象属性值的情况。Python提供了一个内置函数getattr()来帮助我们实现这个目标。getattr()函数允许我们通过传递对象和属性名称作为参数来获取该对象的属性值。本文将详细介绍getattr()函数的用法,并提供实际的代码示例,以便更好地理解。g

使用Python的isinstance()函数判断对象是否属于某个类使用Python的isinstance()函数判断对象是否属于某个类Aug 22, 2023 am 11:52 AM

使用Python的isinstance()函数判断对象是否属于某个类在Python中,我们经常需要判断一个对象是否属于某个特定的类。为了方便地进行类别判断,Python提供了一个内置函数isinstance()。本文将介绍isinstance()函数的用法,并提供代码示例。isinstance()函数可以判断一个对象是否属于指定的类或类的派生类。它的语法如下

PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块Jul 29, 2023 pm 11:19 PM

PHP代码封装技巧:如何使用类和对象封装可重复使用的代码块摘要:在开发中,经常遇到需要重复使用的代码块。为了提高代码的可维护性和可重用性,我们可以使用类和对象的封装技巧来对这些代码块进行封装。本文将介绍如何使用类和对象封装可重复使用的代码块,并提供几个具体的代码示例。使用类和对象的封装优势使用类和对象的封装有以下几个优势:1.1提高代码的可维护性通过将重复

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

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

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

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.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

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),