JavaScript Objects Explained | JavaScript Complete Course for Beginners in Hindi | 2021
Chapters:
Intro 0:00
Why we need Objects? 1:17
JavaScript Object Explained 2:20
Property vs Method 2:50
How to write JavaScript Object (Syntax)? 5:10
How to access property of an Object? 8:25
How to use Constructors 13:30
Object Methods - 22:20
Outro 31:37
Object Methods - Add property, delete property, enumerable,writable,configurable
Javascript Object Syntax:
var objectName = {}; curly braces also known as object literal
example:
var newCar ={
color:'Pink',
wheels:4
}
To add new property in a javascript object
Object.defineProperty(objectName,'propertyName',{value:'value'});
or
objectName.property = value;
or
objectName['property']=value;
To delete any javascript object property
delete objectName.property;
-Update Property's meta data
Object.defineProperty(objectName,'propertyName',{writable:false});
Object.defineProperty(objectName,'propertyName',{configurable:false});
Object.defineProperty(objectName,'propertyName',{enumerable:false});
-------------------------------------------------------------------------
For any business query, feel free to drop an email at [email protected].
Join Telegram : https://t.me/orangeweb
Follow me on Instagram: / orangepreneur
Listen to my podcasts: https://anchor.fm/orangepreneur
-------------------------------------------------------------------------
Camera Gears I use:
Creator Kit: https://kit.co/orangedigitals/youtube...
--------------
Camera: https://amzn.to/36AviVA
Primary Mic: https://amzn.to/2raoSfG
Secondary Mic: https://amzn.to/2qjeamJ
Light: https://amzn.to/2CkjoBf
My Working Machine:
MacBook: https://amzn.to/2Ch8SLo
WorkStation Configuration:
Processor - AMD 3900x
Cooler - AMD Wrath Prism Cooler
GPU = RTX 2080 Super
Ram = GSkill 16 GB Trident 3200 Mhz
SSD = 500 GB Samsung Evo 970 Plus
Mobo = AsRock x570 Steel legend Wifi
Case = NZXT 510i White
HDD = 1 TB
Power Supply = Corsair TX650M 650W Gold+
Keyboard = CORSAIR K55 RGB Gaming Keyboard
Mouse = Logitech G 402 Hyperion Fury Wired Gaming Mouse
Mouse Pad = Logitech Mouse Pad
Dual Monitor = HP (24 Inch) & Dell (21Inch)-- 1080p
Headphone = RedGear 7.1 Cosmo (White Edition)
Voiceover Mic:
Blue Snowball iCE White Edition
Blue Yeti White Edition
-------------------------------------------------------------------------
Disclaimer:
Everything I say is based on my personal experience and knowledge.
I consider myself as a learner and do not hold any kind of expertise. I cannot guarantee accuracy or authenticity of content I am covering in my videos. Please do some research before taking any decision.
Logos/music or any trademark resources used in my videos are trademark of their respective owner.
Animation used in my videos are 100% my own work. appropriate action will taken against individual/business who use it without written consent.