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)
author | ghasemkiani |
---|---|
permlink | javascript-basics-08 |
category | javascript |
json_metadata | {"tags":["javascript","programming","technology"],"app":"juya/app","format":"markdown","percent_steem_dollars":10000} |
created | 2018-02-08 09:31:06 |
last_update | 2018-02-08 09:31:06 |
depth | 0 |
children | 35 |
last_payout | 2018-02-15 09:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.648 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,689 |
author_reputation | 90,438,911,242,538 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,876,046 |
net_rshares | 1,121,780,304,448 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 1,015,831,447,712 | 100% | ||
manuel78 | 0 | 194,936,591 | 3% | ||
srkattel | 0 | 533,850,202 | 100% | ||
haji | 0 | 360,880,861 | 100% | ||
satyamsharma | 0 | 307,270,496 | 50% | ||
angela.ghkh | 0 | 13,115,437,536 | 50% | ||
nataliemk | 0 | 616,675,211 | 100% | ||
pepskaram | 0 | 17,858,408,493 | 100% | ||
johnwjr7 | 0 | 1,033,590,547 | 5% | ||
dxdei | 0 | 439,370,206 | 100% | ||
autofreak | 0 | 10,592,532,445 | 100% | ||
cryptoeagle | 0 | 37,956,844,167 | 50% | ||
lusia | 0 | 530,758,721 | 100% | ||
shariaislam | 0 | 251,742,238 | 100% | ||
thepreacher | 0 | 327,538,549 | 30% | ||
nimik | 0 | 1,675,427,818 | 100% | ||
xaunya | 0 | 52,463,700 | 9% | ||
xtdevelopment | 0 | 52,656,519 | 9% | ||
hafiz34 | 0 | 5,053,765,460 | 74% | ||
sam1210 | 0 | 3,699,625,714 | 100% | ||
greenwhell79 | 0 | 567,010,767 | 100% | ||
samadhii | 0 | 594,100,470 | 100% | ||
zpzn | 0 | 867,506,602 | 100% | ||
mazyar | 0 | 531,331,154 | 100% | ||
divaa | 0 | 458,230,317 | 100% | ||
danielvd | 0 | 614,860,000 | 100% | ||
kospi | 0 | 5,940,766,228 | 100% | ||
nayim533 | 0 | 0 | 100% | ||
syifa93 | 0 | 590,669,728 | 100% | ||
ajiergg | 0 | 580,665,800 | 100% | ||
hsa61 | 0 | 0 | 100% | ||
nawarnizam | 0 | 549,940,196 | 100% | ||
junaidiabdya | 0 | 0 | 100% | ||
nrsplastic | 0 | 0 | 100% |
Great
author | agyapong |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t142331510z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 14:23:42 |
last_update | 2018-02-08 14:23:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 14:23:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 195,900,825,839 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,927,427 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
thanxs alot for sharing with the steemit family its really helpful!
author | akashhassan |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t103935102z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 10:39:36 |
last_update | 2018-02-08 10:39:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 10:39:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 1,208,421,292,874 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,887,569 |
net_rshares | 10,803,275,552 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% | ||
akashhassan | 0 | 589,673,880 | 100% |
wow..your writing is very nice dear @ghasemkiani ,, i love your writing,,,,
author | alimuddin |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t094411389z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-08 09:44:21 |
last_update | 2018-02-08 09:44:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 1,508,436,968,834 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,878,222 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
Again good post from you, thank u
author | angryboy |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t093208052z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:32:06 |
last_update | 2018-02-08 09:32:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:32:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 602,251,134,254 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,876,189 |
net_rshares | 0 |
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.** 
author | autofreak |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180209t101739545z |
category | javascript |
json_metadata | {"tags":["javascript"],"image":["https://steemitimages.com/DQmZySTgNvsqnjtDsRd4xd5wPSTVxWJ96i7Wyg1hJxGWoYa/videotogif_2018.01.26_01.50.05.gif"],"app":"steemit/0.1"} |
created | 2018-02-09 10:17:48 |
last_update | 2018-02-09 10:17:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 10:17:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 393 |
author_reputation | 14,084,098,064,393 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,133,668 |
net_rshares | 0 |
nice share .. thanks for thus us inform ton
author | azizulhassan |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t094500234z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:45:03 |
last_update | 2018-02-08 09:45:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:45:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 858,685,273,941 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,878,342 |
net_rshares | 769,282,675 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
azizulhassan | 0 | 769,282,675 | 100% |
Very important for unknown person
author | charliechain |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t112520467z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 11:25:27 |
last_update | 2018-02-08 11:25:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 11:25:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 5,425,403,461,319 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,895,233 |
net_rshares | 577,871,277 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
charliechain | 0 | 577,871,277 | 100% |
posting a very good friend
author | fauzanhaikal |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t093814135z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:38:24 |
last_update | 2018-02-08 09:38:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 781,908,924,540 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,877,240 |
net_rshares | 0 |
I really like this post ghasemkiani! keep it up!
author | five34a4b |
---|---|
permlink | javascript-basics-08-comment |
category | javascript |
json_metadata | {} |
created | 2018-02-08 19:48:03 |
last_update | 2018-02-08 19:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 19:48:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 1,119,681,610,239 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,990,035 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
nice bolg on javascript
author | jackjounior |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t111301045z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 11:13:03 |
last_update | 2018-02-08 11:13:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 11:13:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 100,421,392,737 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,893,307 |
net_rshares | 0 |
awesome
author | jahangirwifii |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t130112567z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 13:01:18 |
last_update | 2018-02-08 13:01:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 13:01:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 37,205,590,144,986 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,911,719 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
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
author | jameshurst |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180209t145157582z |
category | javascript |
json_metadata | {"tags":["javascript","programming"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-09 14:52:00 |
last_update | 2018-02-09 14:52:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 14:52:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 500 |
author_reputation | 15,343,015,148 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,186,734 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
very helpfull post...u r great sir..restem done
author | jimma2 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t093333300z |
category | javascript |
json_metadata | {"tags":["javascript"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-08 09:33:36 |
last_update | 2018-02-08 09:33:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:33:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 113,162,662,059 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,876,444 |
net_rshares | 0 |
Great post as usual. Learning post
author | kazmi1 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t102841531z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 10:28:42 |
last_update | 2018-02-08 10:28:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 10:28:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 3,714,572,604,837 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,885,721 |
net_rshares | 773,331,293 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kazmi1 | 0 | 773,331,293 | 100% |
Very usefully blog
author | mddelwar |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180210t054743592z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-10 05:47:54 |
last_update | 2018-02-10 05:47:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-17 05:47:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.550 HBD |
curator_payout_value | 0.515 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 1,348,018,393,509 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,337,356 |
net_rshares | 285,027,863,830 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badol1994 | 0 | 285,027,863,830 | 100% |
great post. It so helpful for us. thanks for sharing
author | mdmunna |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t120900997z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 12:09:12 |
last_update | 2018-02-08 12:09:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 12:09:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 259,415,872,565 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,902,248 |
net_rshares | 0 |
very important blog. Your blog is really awesome. I like it. Thanks for sharing.
author | mirasif |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t184203483z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 18:42:09 |
last_update | 2018-02-08 18:42:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 18:42:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 1,099,415,853,056 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,977,860 |
net_rshares | 0 |
author | mohsin01 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t095454150z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:54:54 |
last_update | 2018-02-08 09:54:54 |
depth | 1 |
children | 1 |
last_payout | 2018-02-15 09:54:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.208 HBD |
curator_payout_value | 0.047 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 8,329,306,629,966 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,879,913 |
net_rshares | 37,102,176,914 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mohsin01 | 0 | 32,200,931,998 | 100% | ||
ekhlas01 | 0 | 4,901,244,916 | 100% |
so helpful post. i will try it. thanks @ghasemkiani:- for your post
author | mdmunna |
---|---|
permlink | re-mohsin01-re-ghasemkiani-javascript-basics-08-20180208t121146309z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-08 12:11:54 |
last_update | 2018-02-08 12:11:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-15 12:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 259,415,872,565 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,902,684 |
net_rshares | 0 |
Programming is a hard work..It is using complex computer work slove ..Carry on dear.
author | mousumimou |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t094549283z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:45:48 |
last_update | 2018-02-08 09:45:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 2,898,342,274,656 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,878,477 |
net_rshares | 475,550,993 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mousumimou | 0 | 475,550,993 | 100% |
🙏
author | napa |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t162553920z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 16:25:54 |
last_update | 2018-02-08 16:25:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 16:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 13,652,462,539,735 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,951,650 |
net_rshares | 0 |
Thanks for update good and informative post
author | nayyabsipra |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t144734179z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 14:48:42 |
last_update | 2018-02-08 14:48:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 14:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 1,383,291,974,496 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,932,300 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
Thanks for sharing this post on Java.
author | nimik |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180210t022648267z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-10 02:26:48 |
last_update | 2018-02-10 02:26:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-17 02:26:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 856,557,847,201 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,305,031 |
net_rshares | 10,212,126,795 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,212,126,795 | 1% |
very well post and awesome writing thanks for sharing
author | rasel1234 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t095818497z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:58:24 |
last_update | 2018-02-08 09:58:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:58:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 107,696,836,345 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,880,533 |
net_rshares | 0 |
programming is a difficult job.keep it up. one day you will make a good programmer
author | rasel786 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t095116174z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:51:21 |
last_update | 2018-02-08 09:51:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:51:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 55,441,930,294 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,879,308 |
net_rshares | 0 |
This very nice post i appreciate your post thanks for sharing this technology news carry on my dear friends...
author | rkaitra |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t093819503z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:38:54 |
last_update | 2018-02-08 09:38:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:38:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 705,269,649,419 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,877,315 |
net_rshares | 361,577,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rkaitra | 0 | 361,577,979 | 100% |
great post dear great writing. i will naver forget you keep it up dear @ghasemkiani
author | sabbirahmedd |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t094052701z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-08 09:41:03 |
last_update | 2018-02-08 09:41:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:41:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 1,260,451,635,452 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,877,684 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
This is very educative post .Helpful for program learner .keep it up Thanks a lot @ghasemkiani
author | sabihaa |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180209t064338745z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-09 06:43:42 |
last_update | 2018-02-09 06:43:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 06:43:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 103,938,230,380 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,096,417 |
net_rshares | 0 |
I got some important things from the post, thanks for nice example.
author | sam1210 |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t180958575z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 18:09:57 |
last_update | 2018-02-08 18:09:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 18:09:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 1,732,544,462,145 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,971,581 |
net_rshares | 10,210,127,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,210,127,435 | 1% |
thankyou for this info :)
author | sanach |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t101234115z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 10:12:36 |
last_update | 2018-02-08 10:12:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 10:12:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 135,519,337,337,704 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,883,065 |
net_rshares | 0 |
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
author | sharifulislamm |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180209t064202770z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-09 06:42:06 |
last_update | 2018-02-09 06:42:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 06:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 497,515,855,739 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,096,163 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
This is good. I love it, more of this.
author | skillsameh |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t093329942z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:33:42 |
last_update | 2018-02-08 09:33:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 124,725,966,169 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,876,464 |
net_rshares | 0 |
helpful post for the programmer or who wants to learn code. Thanks
author | srkattel |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t095634714z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 09:56:39 |
last_update | 2018-02-08 09:56:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 09:56:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 144,584,431,251 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,880,216 |
net_rshares | 0 |
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..
author | timuann |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180208t100231959z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-08 10:02:45 |
last_update | 2018-02-08 10:02:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 10:02:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 291 |
author_reputation | 6,544,418,433,868 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,881,339 |
net_rshares | 0 |
????? 
author | zairawasim |
---|---|
permlink | re-ghasemkiani-javascript-basics-08-20180211t172954829z |
category | javascript |
json_metadata | {"tags":["javascript"],"image":["https://steemitimages.com/DQmfHzHseJmdr2uLK4h4X9RuQWbLMozWFeKpMbe6b8S5Evx/10985481_727330707411009_8738232177090416444_n.jpg"],"app":"steemit/0.1"} |
created | 2018-02-11 17:35:00 |
last_update | 2018-02-11 17:35:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-18 17:35:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 151,312,816,827 |
root_title | "JavaScript Basics: Object.seal and Object.isSealed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,719,562 |
net_rshares | 1,146,923,453 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deronke | 0 | 1,146,923,453 | 100% |