Monday, October 18, 2021
In JavaScript you can delete an object's property with the delete operator. Let's use the product object again as an example.
Let say you have the following JavaScript code to create a product object.
If you view the above code in a web browser window you will see the following.
We are going to use the delete operator to delete badProperty and badProperty2. As with the way we access properties we can delete properties with either the dot notation or the [] operator. To delete the properties type in the following.
delete product.badProperty;
delete product["badProperty2"];
If you type console.log(product) again the two properties will no longer be there
Let say you have the following JavaScript code to create a product object.
var product = new Object(); product.name = "Chai"; product.category = "Tea"; product.country = "India"; product.badProperty = "Bad Property"; product.badProperty2 = "Bad Property 2"; product.supplier = { name: "ACME Tea Of India", location: "New Delhi" }; console.log(product);
If you view the above code in a web browser window you will see the following.
We are going to use the delete operator to delete badProperty and badProperty2. As with the way we access properties we can delete properties with either the dot notation or the [] operator. To delete the properties type in the following.
delete product.badProperty;
delete product["badProperty2"];
If you type console.log(product) again the two properties will no longer be there
Subscribe to:
Post Comments (Atom)
Search This Blog
Tags
Web Development
Linux
Javascript
DATA
CentOS
ASPNET
SQL Server
Cloud Computing
ASP.NET Core
ASP.NET MVC
SQL
Virtualization
AWS
Database
ADO.NET
AngularJS
C#
CSS
EC2
Iaas
System Administrator
Azure
Computer Programming
JQuery
Coding
ASP.NET MVC 5
Entity Framework Core
Web Design
Infrastructure
Networking
Visual Studio
Errors
T-SQL
Ubuntu
Stored Procedures
ACME Bank
Bootstrap
Computer Networking
Entity Framework
Load Balancer
MongoDB
NoSQL
Node.js
Oracle
VirtualBox
Container
Docker
Fedora
Java
Source Control
git
ExpressJS
MySQL
NuGet
Blogger
Blogging
Bower.js
Data Science
JSON
JavaEE
Web Api
DBMS
DevOps
HTML5
MVC
SPA
Storage
github
AJAX
Big Data
Design Pattern
Eclipse IDE
Elastic IP
GIMP
Graphics Design
Heroku
Linux Mint
Postman
R
SSL
Security
Visual Studio Code
ASP.NET MVC 4
CLI
Linux Commands
Powershell
Python
Server
Software Development
Subnets
Telerik
VPC
Windows Server 2016
angular-seed
font-awesome
log4net
servlets
tomcat
AWS CloudWatch
Active Directory
Angular
Blockchain
Collections
Compatibility
Cryptocurrency
DIgital Life
DNS
Downloads
Google Blogger
Google Chrome
Google Fonts
Hadoop
IAM
KnockoutJS
LINQ
Linux Performance
Logging
Mobile-First
Open Source
Prototype
R Programming
Responsive
Route 53
S3
SELinux
Software
Unix
View
Web Forms
WildFly
XML
cshtml
githu
No comments:
Post a Comment