Skip to main content

Things you may not know about Javascript Objects

Object Properties:

An Object is a non primitive data with collection of properties(key, value). Each property(key) of an Object has following configurable properties,
  1. value - value of the property. Default: undefined
  2. enumerable - if true, the property can be accessed using a for..in loop and Object.keys. Default: false
  3. writable - if true, the property value can be modified. Default: false
  4. get - defines a getter function. Default: undefined
  5. set - defines a setter function. Default: undefined
  6. configurable - if true, all the properties can be modified and deleted. Default: false
With Object.defineProperty and Object.defineProperties we can set the above configurable properties for an Object property(key).

With Object.getOwnPropertyDescriptor and Object.getOwnPropertyDescriptors we can get the above configurable properties associated with an Object property(key).

example:

var x = { a:1, b:2 };

Object.getOwnPropertyDescriptor(x, 'a'); 
// {value: 1, writable: true, enumerable: true, configurable: true} 

Object.freeze()

This method prevents an Object from,
  1. New Properties being added
  2. Modify existing properties
  3. Delete existing properties
  4. Configuring the object properties
But still the inner object properties can be modified. To deep freeze the whole object, we have to recursively freeze the non primitive values (Object).
So the property description for each property in an object will be,

writable: false
enumerable: true
configurable: false

example:

var x = {
a:1, 
b:2, 
c:{
d:3
}
};

var y = Object.freeze(x);
    
    Object.getOwnPropertyDescriptor(x, 'a'); //{value: 1, writable: false, enumerable: true, configurable: false}

x===y; //true

x.a; //1
x.a = 5; //silently fails. In strict mode - throws a TypeError
x.a; //1
x.m = 5; //silently fails. In strict mode - throws a TypeError
x.m; //undefined

x.c.d; //3
x.c.d = 5; //since it is not a primitive value, still it allows to modify internal properties of 'c'
x.c.d; //5

Object.defineProperty(x, 'n', { value: 10 }); //throws a TypeError
Object.defineProperty(x, 'a', { value: 20 }); //throws a TypeError

Object.isFrozen(x); //true
Object.isExtensible(x); //false

Object.seal()

This method prevents an Object from,
  1. New Properties being added
  2. Delete existing properties
  3. Configuring the object properties
It allows the value of an existing properties to be modified.
So the property description for each property in an object will be,

writable: true
enumerable: true
configurable: false

example:

var x = {
a:1, 
b:2, 
c:{
d:3
}
};

var y = Object.seal(x);

Object.getOwnPropertyDescriptor(x, 'a'); //{value: 1, writable: true, enumerable: true, configurable: false}

x===y; //true

x.a; //1
x.a = 5; //since it is writable. the value can be changed
x.a; //5

x.m = 5; //silently fails. In strict mode - throws a TypeError
x.m; //undefined

Object.defineProperty(x, 'n', { value: 10 }); //throws a TypeError
Object.defineProperty(x, 'a', { value: 20 }); //allows to modify value

x.a; //20

Object.isSealed(x); //true
Object.isExtensible(x); //false

Comments

Popular posts from this blog

Simple Animation Using C

Here i have used fillpoly function to draw the object body and used fillellipse function to draw tier. animation is done by looping through the objects x & y position until user hits a key. Keypress event is achived  by using kbhit function. Smoothness of animation is controlled by delay function. Change the delay values to change the animation speed Source: #include<stdio.h> #include<conio.h> #include<graphics.h> #include<dos.h> void main() { int gd=DETECT,gm,i=-300,j; int poly[16]={100,100,250,100,250,50,300,50,325,90,325,140,100,140,100,100}; int tpoly[16]={100,100,250,100,250,50,300,50,325,90,325,140,100,140,100,100}; initgraph(&gd,&gm,""); getch(); while(!kbhit()) { for(j=0;j<16;j+=2) { poly[j]=tpoly[j]+i; } fillpoly(8,poly); setfillstyle(5,7); bar(275+i,60,295+i,85); setfillstyle(5,8); fillellipse(140+i,140,20,20); fillellipse(280+i,140,20,20); setfillstyle(1,0); fillellipse(140+i,140,10,10); fillellipse(280+i,140,10

RGB in C

Default palette size for normal graphics driver is 16 i.e) the color number rages from 0 to 15 To use rgb color modes we have to choose VGA or IBM 8514 as a graphics driver For VGA, Palette size is 16 i.e) color number ranges from 0-16 For IBM 8514, Palette size is 256 i.e) color number ranges from 0-255, we can also say it as VGA with 256 palette size By using setrgbpalette function we can generate RGB colors, we can generate colors with respect to Palette size. This function replaces the default palette colors with the generated Palette colors. Syntax: void setrgbpalette(int colornum, int red, int green, int blue); /* colornum - color number in palette (0-15 or 0-255 depens on graphics driver) red - color value for red (0-255) green - color value for green (0-255) blue - color value for blue (0-255) */ Example: #include<graphics.h> #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<time.h> void main(){ int gd=VGA,

Random Bouncing Ball Animation

Simple animation of random balls that bounces within the screen Source: #include<stdio.h> #include<graphics.h> #include<conio.h> #include<dos.h> #include<math.h> void drawBall(struct ball *b, int color); struct ball{ int x, y; int dx, dy; int radius; }; void main() { int gd=0, gm=VGAHI; int i; struct ball b[10]; initgraph(&gd, &gm, ""); for(i=1;i<=15;i++){ b[i].radius = rand()%20; b[i].x=rand()%getmaxx(); b[i].y=rand()%getmaxy(); b[i].dx=2; b[i].dy=4; } while(!kbhit()) { delay(5); cleardevice(); for(i=1;i<=15;i++) drawBall(&b[i],i); } closegraph(); } void drawBall(struct ball *b, int color){ setfillstyle(1,color); setcolor(color); fillellipse(b->x, b->y, b->radius, b->radius); if(b->x+b->radius > getmaxx() || b->x-b->radius<0) b->dx = -b->dx; if(b->y+b->radius > getmaxy() || b->y-b->radius<0) b->dy = -b->dy; b->x+=b-&g