create account

JavaScript Basics: Object.seal and Object.isSealed by ghasemkiani

View this thread on: hive.blogpeakd.comecency.com
· @ghasemkiani ·
$7.71
JavaScript Basics: Object.seal and Object.isSealed
In the previous post, I wrote about `Object.preventExtensions`. That functions prevents the addition of new properties to an object. However, it does not prevent you from configuring, mutating, or even deleting the existing properties.

The following code snippet demonstrates the workings of `Object.preventExtensions`:

```
	let myObj = {
		name: "Ali",
	};
	Object.preventExtensions(myObj);
	// You can still configure the existing properties
	Object.defineProperty(myObj, "name", {
		get() {
			return "Susan";
		},
	});
	console.log(myObj.name); // Susan
	// You can even delete the existing properties
	delete myObj.name;
	console.log(myObj.name); // undefined
	
	// You just can't add new properties.
	// The following code throws an exception:
	// TypeError: Cannot define property age, object is not extensible
	Object.defineProperty(myObj, "age", {
		value: 19,
	});
```

_What if we want to prevent the existing properties from being configured again?_

For this purpose, you can use `Object.seal`. This function prevents adding new properties **and** prevents the existing properties from being reconfigured or deleted. After calling this function, the only thing you can do is to change the values of the existing properties. You cannot change their definition. For example, you cannot convert a data property into an accessor property or vice versa.

Here is an example:

```
	let myObj = {
		name: "Ali",
	};
	Object.seal(myObj);
	
	console.log(Object.isSealed(myObj)); // true

	// You cannot add new properties. This fails silently.
	myObj.age = 19;
	console.log(myObj.age); // undefined

	// You cannot reconfigure existing properties.
	try {
		Object.defineProperty(myObj, "name", {
			get() {
				return "Susan";
			},
		});
		console.log(myObj.name);
	} catch (e) {
		console.log(e); // TypeError: Cannot redefine property: name
	}

	// You can still change property values.
	myObj.name = "Susan";
	console.log(myObj.name); // Susan
	// This is also okay (since this only changes the value of the property
	// and does not change its configuration):
	Object.defineProperty(myObj, "name", {
		value: "Aria",
	});
	console.log(myObj.name); // Aria

	// You can add new properties to the prototype.
	myObj.__proto__.age = 14;
	console.log(myObj.age); // 14

	// You cannot change the prototype.
	try {
		Object.setPrototypeOf(myObj, {
			grade: 9,
		});
		console.log(myObj.grade);
	} catch (e) {
		console.log(e); // TypeError: #<Object> is not extensible
	}
	try {
		myObj.__proto__ = {
			grade: 9,
		};
		console.log(myObj.grade);
	} catch (e) {
		console.log(e); // TypeError: #<Object> is not extensible
	}
```

In short, `Object.seal` prevents extensions to the object and makes all the existing properties non-configurable, but does not prevent the values of the existing properties from being changed.

---

## Related Posts

* [JavaScript Basics: Object.create](https://steemit.com/javascript/@ghasemkiani/javascript-basics-01)
* [JavaScript Basics: Object.assign](https://steemit.com/javascript/@ghasemkiani/javascript-basics-02)
* [JavaScript Basics: Object.getPrototypeOf and Object.setPrototypeOf](https://steemit.com/javascript/@ghasemkiani/javascript-basics-03)
* [JavaScript Basics: Object.keys, Object.values, and Object.entries](https://steemit.com/javascript/@ghasemkiani/javascript-basics-04)
* [JavaScript Basics: Object.is](https://steemit.com/javascript/@ghasemkiani/javascript-basics-05)
* [JavaScript Basics: Object.prototype.hasOwnProperty](https://steemit.com/javascript/@ghasemkiani/javascript-basics-06)
* [JavaScript Basics: Object.preventExtensions and Object.isExtensible](https://steemit.com/javascript/@ghasemkiani/javascript-basics-07)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorghasemkiani
permlinkjavascript-basics-08
categoryjavascript
json_metadata{"tags":["javascript","programming","technology"],"app":"juya/app","format":"markdown","percent_steem_dollars":10000}
created2018-02-08 09:31:06
last_update2018-02-08 09:31:06
depth0
children35
last_payout2018-02-15 09:31:06
cashout_time1969-12-31 23:59:59
total_payout_value7.648 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,689
author_reputation90,438,911,242,538
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,876,046
net_rshares1,121,780,304,448
author_curate_reward""
vote details (34)
@agyapong ·
$0.07
Great
👍  
properties (23)
authoragyapong
permlinkre-ghasemkiani-javascript-basics-08-20180208t142331510z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 14:23:42
last_update2018-02-08 14:23:42
depth1
children0
last_payout2018-02-15 14:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation195,900,825,839
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,927,427
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@akashhassan ·
$0.07
thanxs alot for sharing with the steemit family its really helpful!
👍  ,
properties (23)
authorakashhassan
permlinkre-ghasemkiani-javascript-basics-08-20180208t103935102z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 10:39:36
last_update2018-02-08 10:39:36
depth1
children0
last_payout2018-02-15 10:39:36
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation1,208,421,292,874
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,887,569
net_rshares10,803,275,552
author_curate_reward""
vote details (2)
@alimuddin ·
$0.07
wow..your writing is very nice dear @ghasemkiani ,, i love your writing,,,,
👍  
properties (23)
authoralimuddin
permlinkre-ghasemkiani-javascript-basics-08-20180208t094411389z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-08 09:44:21
last_update2018-02-08 09:44:21
depth1
children0
last_payout2018-02-15 09:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation1,508,436,968,834
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,878,222
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@angryboy ·
Again good post from you, thank u
properties (22)
authorangryboy
permlinkre-ghasemkiani-javascript-basics-08-20180208t093208052z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:32:06
last_update2018-02-08 09:32:06
depth1
children0
last_payout2018-02-15 09:32:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation602,251,134,254
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,876,189
net_rshares0
@autofreak ·
Lots of things to learn from here. Keep it up!


**I am on a trip to check on my followers, to comment, upvote and resteem post of 10 follower per day in alphabetical order. Just a means of saying thank you and showing love to the community.**


![videotogif_2018.01.26_01.50.05.gif](https://steemitimages.com/DQmZySTgNvsqnjtDsRd4xd5wPSTVxWJ96i7Wyg1hJxGWoYa/videotogif_2018.01.26_01.50.05.gif)
properties (22)
authorautofreak
permlinkre-ghasemkiani-javascript-basics-08-20180209t101739545z
categoryjavascript
json_metadata{"tags":["javascript"],"image":["https://steemitimages.com/DQmZySTgNvsqnjtDsRd4xd5wPSTVxWJ96i7Wyg1hJxGWoYa/videotogif_2018.01.26_01.50.05.gif"],"app":"steemit/0.1"}
created2018-02-09 10:17:48
last_update2018-02-09 10:17:48
depth1
children0
last_payout2018-02-16 10:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length393
author_reputation14,084,098,064,393
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,133,668
net_rshares0
@azizulhassan ·
nice share .. thanks for thus us inform ton
👍  
properties (23)
authorazizulhassan
permlinkre-ghasemkiani-javascript-basics-08-20180208t094500234z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:45:03
last_update2018-02-08 09:45:03
depth1
children0
last_payout2018-02-15 09:45:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation858,685,273,941
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,878,342
net_rshares769,282,675
author_curate_reward""
vote details (1)
@charliechain ·
Very important for unknown person
👍  
properties (23)
authorcharliechain
permlinkre-ghasemkiani-javascript-basics-08-20180208t112520467z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 11:25:27
last_update2018-02-08 11:25:27
depth1
children0
last_payout2018-02-15 11:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation5,425,403,461,319
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,895,233
net_rshares577,871,277
author_curate_reward""
vote details (1)
@fauzanhaikal ·
posting a very good friend
properties (22)
authorfauzanhaikal
permlinkre-ghasemkiani-javascript-basics-08-20180208t093814135z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:38:24
last_update2018-02-08 09:38:24
depth1
children0
last_payout2018-02-15 09:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation781,908,924,540
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,877,240
net_rshares0
@five34a4b ·
$0.07
javascript-basics-08-comment
I really like this post ghasemkiani! keep it up!
👍  
properties (23)
authorfive34a4b
permlinkjavascript-basics-08-comment
categoryjavascript
json_metadata{}
created2018-02-08 19:48:03
last_update2018-02-08 19:48:03
depth1
children0
last_payout2018-02-15 19:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation1,119,681,610,239
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,990,035
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@jackjounior ·
nice bolg on javascript
properties (22)
authorjackjounior
permlinkre-ghasemkiani-javascript-basics-08-20180208t111301045z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 11:13:03
last_update2018-02-08 11:13:03
depth1
children0
last_payout2018-02-15 11:13:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation100,421,392,737
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,893,307
net_rshares0
@jahangirwifii ·
$0.07
awesome
👍  
properties (23)
authorjahangirwifii
permlinkre-ghasemkiani-javascript-basics-08-20180208t130112567z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 13:01:18
last_update2018-02-08 13:01:18
depth1
children0
last_payout2018-02-15 13:01:18
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation37,205,590,144,986
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,911,719
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@jameshurst ·
$0.07
superb sharing @ghasemkiani . As a #javascript learner your post always help me alot and clear my concept about different issues of JS which i faced often during #programming .

Your posts always help me alot to clear these all issues and i really wait your posts.

As this post clear the issues of javascript and well describe the javascript seal method , my question is , Is javascript freez method is same like javascript seal or both have different techniques and methods.

Thank you @ghasemkiani
👍  
properties (23)
authorjameshurst
permlinkre-ghasemkiani-javascript-basics-08-20180209t145157582z
categoryjavascript
json_metadata{"tags":["javascript","programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-09 14:52:00
last_update2018-02-09 14:52:00
depth1
children0
last_payout2018-02-16 14:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length500
author_reputation15,343,015,148
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,186,734
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@jimma2 ·
very helpfull post...u r great sir..restem done
properties (22)
authorjimma2
permlinkre-ghasemkiani-javascript-basics-08-20180208t093333300z
categoryjavascript
json_metadata{"tags":["javascript"],"community":"busy","app":"busy/2.3.0"}
created2018-02-08 09:33:36
last_update2018-02-08 09:33:36
depth1
children0
last_payout2018-02-15 09:33:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation113,162,662,059
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,876,444
net_rshares0
@kazmi1 ·
Great post as usual. Learning post
👍  
properties (23)
authorkazmi1
permlinkre-ghasemkiani-javascript-basics-08-20180208t102841531z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 10:28:42
last_update2018-02-08 10:28:42
depth1
children0
last_payout2018-02-15 10:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation3,714,572,604,837
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,885,721
net_rshares773,331,293
author_curate_reward""
vote details (1)
@mddelwar ·
$2.07
Very usefully blog
👍  
properties (23)
authormddelwar
permlinkre-ghasemkiani-javascript-basics-08-20180210t054743592z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-10 05:47:54
last_update2018-02-10 05:47:54
depth1
children0
last_payout2018-02-17 05:47:54
cashout_time1969-12-31 23:59:59
total_payout_value1.550 HBD
curator_payout_value0.515 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation1,348,018,393,509
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,337,356
net_rshares285,027,863,830
author_curate_reward""
vote details (1)
@mdmunna ·
great post.  It so helpful for us.  
thanks for sharing
properties (22)
authormdmunna
permlinkre-ghasemkiani-javascript-basics-08-20180208t120900997z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 12:09:12
last_update2018-02-08 12:09:12
depth1
children0
last_payout2018-02-15 12:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation259,415,872,565
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,902,248
net_rshares0
@mirasif ·
very important blog. Your blog is really awesome. I like it. Thanks for sharing.
properties (22)
authormirasif
permlinkre-ghasemkiani-javascript-basics-08-20180208t184203483z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 18:42:09
last_update2018-02-08 18:42:09
depth1
children0
last_payout2018-02-15 18:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation1,099,415,853,056
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,977,860
net_rshares0
@mohsin01 ·
$0.26
Very critical for every unknown person
👍  ,
properties (23)
authormohsin01
permlinkre-ghasemkiani-javascript-basics-08-20180208t095454150z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:54:54
last_update2018-02-08 09:54:54
depth1
children1
last_payout2018-02-15 09:54:54
cashout_time1969-12-31 23:59:59
total_payout_value0.208 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation8,329,306,629,966
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,879,913
net_rshares37,102,176,914
author_curate_reward""
vote details (2)
@mdmunna ·
so helpful post.  i will try it.  thanks @ghasemkiani:- for your post
properties (22)
authormdmunna
permlinkre-mohsin01-re-ghasemkiani-javascript-basics-08-20180208t121146309z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-08 12:11:54
last_update2018-02-08 12:11:54
depth2
children0
last_payout2018-02-15 12:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation259,415,872,565
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,902,684
net_rshares0
@mousumimou ·
Programming is a hard work..It is using complex computer work slove ..Carry on dear.
👍  
properties (23)
authormousumimou
permlinkre-ghasemkiani-javascript-basics-08-20180208t094549283z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:45:48
last_update2018-02-08 09:45:48
depth1
children0
last_payout2018-02-15 09:45:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation2,898,342,274,656
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,878,477
net_rshares475,550,993
author_curate_reward""
vote details (1)
@napa ·
🙏
properties (22)
authornapa
permlinkre-ghasemkiani-javascript-basics-08-20180208t162553920z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 16:25:54
last_update2018-02-08 16:25:54
depth1
children0
last_payout2018-02-15 16:25:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation13,652,462,539,735
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,951,650
net_rshares0
@nayyabsipra ·
$0.07
Thanks for update good and informative post
👍  
properties (23)
authornayyabsipra
permlinkre-ghasemkiani-javascript-basics-08-20180208t144734179z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 14:48:42
last_update2018-02-08 14:48:42
depth1
children0
last_payout2018-02-15 14:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation1,383,291,974,496
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,932,300
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@nimik ·
$0.07
Thanks for sharing this post on Java.
👍  
properties (23)
authornimik
permlinkre-ghasemkiani-javascript-basics-08-20180210t022648267z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-10 02:26:48
last_update2018-02-10 02:26:48
depth1
children0
last_payout2018-02-17 02:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation856,557,847,201
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,305,031
net_rshares10,212,126,795
author_curate_reward""
vote details (1)
@rasel1234 ·
very well post and awesome writing
thanks for sharing
properties (22)
authorrasel1234
permlinkre-ghasemkiani-javascript-basics-08-20180208t095818497z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:58:24
last_update2018-02-08 09:58:24
depth1
children0
last_payout2018-02-15 09:58:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation107,696,836,345
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,880,533
net_rshares0
@rasel786 ·
programming is a difficult job.keep it up. one day you will make a good programmer
properties (22)
authorrasel786
permlinkre-ghasemkiani-javascript-basics-08-20180208t095116174z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:51:21
last_update2018-02-08 09:51:21
depth1
children0
last_payout2018-02-15 09:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation55,441,930,294
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,879,308
net_rshares0
@rkaitra ·
This very nice post i appreciate your post thanks for sharing this technology news carry on my dear friends...
👍  
properties (23)
authorrkaitra
permlinkre-ghasemkiani-javascript-basics-08-20180208t093819503z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:38:54
last_update2018-02-08 09:38:54
depth1
children0
last_payout2018-02-15 09:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation705,269,649,419
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,877,315
net_rshares361,577,979
author_curate_reward""
vote details (1)
@sabbirahmedd ·
$0.07
great post dear great writing. i will naver forget you 
keep it up dear
@ghasemkiani
👍  
properties (23)
authorsabbirahmedd
permlinkre-ghasemkiani-javascript-basics-08-20180208t094052701z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-08 09:41:03
last_update2018-02-08 09:41:03
depth1
children0
last_payout2018-02-15 09:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation1,260,451,635,452
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,877,684
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@sabihaa ·
This is very educative post .Helpful for program learner .keep it up
Thanks a lot @ghasemkiani
properties (22)
authorsabihaa
permlinkre-ghasemkiani-javascript-basics-08-20180209t064338745z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-09 06:43:42
last_update2018-02-09 06:43:42
depth1
children0
last_payout2018-02-16 06:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation103,938,230,380
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,096,417
net_rshares0
@sam1210 ·
$0.07
I got some important things from the post, thanks for nice example.
👍  
properties (23)
authorsam1210
permlinkre-ghasemkiani-javascript-basics-08-20180208t180958575z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 18:09:57
last_update2018-02-08 18:09:57
depth1
children0
last_payout2018-02-15 18:09:57
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation1,732,544,462,145
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,971,581
net_rshares10,210,127,435
author_curate_reward""
vote details (1)
@sanach ·
thankyou for this info :)
properties (22)
authorsanach
permlinkre-ghasemkiani-javascript-basics-08-20180208t101234115z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 10:12:36
last_update2018-02-08 10:12:36
depth1
children0
last_payout2018-02-15 10:12:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation135,519,337,337,704
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,883,065
net_rshares0
@sharifulislamm ·
$0.07
I follow the previous post.this post is like a class basically this very helpful for me.Complete a full part, that  will important for all
👍  
properties (23)
authorsharifulislamm
permlinkre-ghasemkiani-javascript-basics-08-20180209t064202770z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-09 06:42:06
last_update2018-02-09 06:42:06
depth1
children0
last_payout2018-02-16 06:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation497,515,855,739
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,096,163
net_rshares10,213,601,672
author_curate_reward""
vote details (1)
@skillsameh ·
This is good. I love it,  more of this.
properties (22)
authorskillsameh
permlinkre-ghasemkiani-javascript-basics-08-20180208t093329942z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:33:42
last_update2018-02-08 09:33:42
depth1
children0
last_payout2018-02-15 09:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation124,725,966,169
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,876,464
net_rshares0
@srkattel ·
helpful post for the programmer or who wants to learn code. Thanks
properties (22)
authorsrkattel
permlinkre-ghasemkiani-javascript-basics-08-20180208t095634714z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 09:56:39
last_update2018-02-08 09:56:39
depth1
children0
last_payout2018-02-15 09:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation144,584,431,251
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,880,216
net_rshares0
@timuann ·
thank you sharing for javascript programming.it is a very important part in our life.every people  should be know  this matter.really  I    have benefited to read javascript objects. its post  to helped  doing  learning alot of thing.thank you sir for your  valuable post..dear@ghasemkiani..
properties (22)
authortimuann
permlinkre-ghasemkiani-javascript-basics-08-20180208t100231959z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-08 10:02:45
last_update2018-02-08 10:02:45
depth1
children0
last_payout2018-02-15 10:02:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation6,544,418,433,868
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,881,339
net_rshares0
@zairawasim ·
?????
![10985481_727330707411009_8738232177090416444_n.jpg](https://steemitimages.com/DQmfHzHseJmdr2uLK4h4X9RuQWbLMozWFeKpMbe6b8S5Evx/10985481_727330707411009_8738232177090416444_n.jpg)
👍  
properties (23)
authorzairawasim
permlinkre-ghasemkiani-javascript-basics-08-20180211t172954829z
categoryjavascript
json_metadata{"tags":["javascript"],"image":["https://steemitimages.com/DQmfHzHseJmdr2uLK4h4X9RuQWbLMozWFeKpMbe6b8S5Evx/10985481_727330707411009_8738232177090416444_n.jpg"],"app":"steemit/0.1"}
created2018-02-11 17:35:00
last_update2018-02-11 17:35:00
depth1
children0
last_payout2018-02-18 17:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation151,312,816,827
root_title"JavaScript Basics: Object.seal and Object.isSealed"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,719,562
net_rshares1,146,923,453
author_curate_reward""
vote details (1)