Objects in JavaScript have not only their own properties, but also the properties that are on the objects in their prototype chain. `Object.keys` gives a collection of the object's own properties, but the `for...in` loop enumerates all properties of the object, including its own properties and its inherited properties. How can you determine if a particular property is an own property or an inherited property? For this, you can use `Object.prototype.hasOwnProperty`. Since this method is available on `Object.prototype`, it is accessible to any object that descends from `Object.prototype`. Here is an example: ``` let myObj = { name: "Ali", }; myObj.hasOwnProperty("name"); // true myObj.hasOwnProperty("toString"); // false ``` You may have noticed that while this method is on `Object.prototype`, most of the other functions for object manipulation are on the `Object` constructor itself. This makes it handy, because the method can be called directly on the object, but there is also a problem, and it is the fact that the object may not have descended from `Object.prototype`. As I wrote in a previous post, In JavaScript, an object may have no prototype. You can call `Object.setPrototypeOf(myObj, null);`. Then, if you call `myObj.hasOwnProperty("name")`, you will receive an error: ``` TypeError: myObj.hasOwnProperty is not a function ``` For this reason, it is recommended that you call this function like this: ``` Object.prototype.hasOwnProperty.call(myObj, "name"); ``` Of course, if you know your object's inheritance, you don't need to follow this precaution. A typical use case for `Object.prototype.hasOwnProperty` is in `for...in` loops. Since `for...in` loops over all the properties of the object, whether own or inherited, sometimes it is necessary to determine whether the property is an own property. Here is an example: ``` for(let prop in myObj) { if(myObj.hasOwnProperty(prop)) { // do something with prop } } ``` --- ## 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)
author | ghasemkiani |
---|---|
permlink | javascript-basics-06 |
category | javascript |
json_metadata | {"tags":["javascript","programming","technology"],"app":"steemit/0.1","format":"markdown","percent_steem_dollars":10000,"links":["https://steemit.com/javascript/@ghasemkiani/javascript-basics-01","https://steemit.com/javascript/@ghasemkiani/javascript-basics-02","https://steemit.com/javascript/@ghasemkiani/javascript-basics-03","https://steemit.com/javascript/@ghasemkiani/javascript-basics-04","https://steemit.com/javascript/@ghasemkiani/javascript-basics-05"]} |
created | 2018-02-06 06:42:57 |
last_update | 2018-02-06 06:45:21 |
depth | 0 |
children | 60 |
last_payout | 2018-02-13 06:42:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 16.948 HBD |
curator_payout_value | 1.830 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,571 |
author_reputation | 90,438,911,242,538 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,328,157 |
net_rshares | 2,712,060,953,624 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 1,005,213,663,675 | 100% | ||
redes | 0 | 979,421,633,222 | 20% | ||
mangos | 0 | 563,965,759,998 | 17% | ||
manuel78 | 0 | 162,092,281 | 3% | ||
molometer | 0 | 32,327,039,908 | 50% | ||
haji | 0 | 315,549,899 | 100% | ||
satyamsharma | 0 | 307,270,496 | 50% | ||
angela.ghkh | 0 | 29,497,674,212 | 100% | ||
nataliemk | 0 | 616,675,211 | 100% | ||
kamapoa | 0 | 460,953,468 | 100% | ||
pepskaram | 0 | 16,387,716,029 | 100% | ||
johnwjr7 | 0 | 1,032,385,814 | 5% | ||
dxdei | 0 | 436,297,687 | 100% | ||
cryptoeagle | 0 | 60,191,098,400 | 50% | ||
shariaislam | 0 | 219,066,658 | 100% | ||
calimeatwagon | 0 | 1,628,171,687 | 75% | ||
aliciawilliams | 0 | 582,958,179 | 100% | ||
worldtour | 0 | 264,656,779 | 100% | ||
thepreacher | 0 | 315,669,128 | 30% | ||
aaabangganteng | 0 | 365,175,180 | 100% | ||
xhunxhiss | 0 | 1,835,874,587 | 100% | ||
hafiz34 | 0 | 7,247,643,016 | 100% | ||
sam1210 | 0 | 2,778,723,496 | 100% | ||
zpzn | 0 | 530,720,181 | 100% | ||
mazyar | 0 | 562,927,333 | 100% | ||
danielvd | 0 | 614,860,000 | 100% | ||
oluwashizzy | 0 | 616,260,745 | 100% | ||
rojib | 0 | 469,452,010 | 100% | ||
cheema1 | 0 | 1,739,546,367 | 100% | ||
nayim533 | 0 | 530,967,114 | 100% | ||
tanjamakash68 | 0 | 491,570,196 | 100% | ||
hsa61 | 0 | 0 | 100% | ||
alestercook | 0 | 614,455,922 | 100% | ||
steemrobot | 0 | 316,444,746 | 100% | ||
junaidiabdya | 0 | 0 | 100% |
Your post is very nice ... @ghasemkiani I upvote 100% of your posts ... Continue to work ... If you do not mind my upvote back posting too: https://steemit.com/crypto/@aaabangganteng/my-problem-with-bitcoin-usdbtc-today-vs-nasdaq-99-bubble-chart-in-3-pictures
author | aaabangganteng | ||||||
---|---|---|---|---|---|---|---|
permlink | re-ghasemkiani-201828t3254779z | ||||||
category | javascript | ||||||
json_metadata | {"tags":["javascript","programming","technology"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-07 20:03:03 | ||||||
last_update | 2018-02-07 20:03:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-14 20:03: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 | 262 | ||||||
author_reputation | 177,360,952,465 | ||||||
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 35,738,878 | ||||||
net_rshares | 0 |
Wonderful post. It really very inportant.
author | aburashed |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065149920z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:51:57 |
last_update | 2018-02-06 06:51:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:51:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 1,343,255,939,027 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,920 |
net_rshares | 5,566,634,736 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
aburashed | 0 | 463,873,487 | 100% |
Educative
author | agyapong |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t100054387z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 10:01:00 |
last_update | 2018-02-06 10:01:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 10:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 195,900,825,839 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,366,264 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
it is very important this work is very hard thanks for sharing a valuable blog
author | alestercook |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064526638z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:45:39 |
last_update | 2018-02-06 06:45:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 847,414,058,241 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,328,667 |
net_rshares | 5,529,812,861 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
jackjami | 0 | 427,051,612 | 100% |
Well I am still a rookie in Java. You looks like an expert level. You should try Unity :)
author | aliciawilliams |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t093944117z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 09:39:48 |
last_update | 2018-02-06 09:39:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 09:39:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 13,629,330,540 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,362,357 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
thank you @ghasemkiani for this post Dear friend steam world you have successfully opened the edge. And you have successfully top level reached, this is my wish. And I am glad this is my practice in your development. My request to you, I am like a small child in the steam world unknown and withut benefited. You must know "People for people" So went my way in the world, steam your collaboration service. Please do follow me and help and thanks to me
author | alimuddin |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070215060z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 07:02:21 |
last_update | 2018-02-06 07:02:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:02:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 453 |
author_reputation | 1,508,436,968,834 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,990 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
this is very inportant.. and very informative... i support you definitily... thanks for sharing....
author | andersonadeli |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070052363z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:01:03 |
last_update | 2018-02-06 07:01:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:01:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 337,213,078,357 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,738 |
net_rshares | 6,882,912,939 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
mokulkhan | 0 | 600,396,354 | 100% | ||
shanewatshon | 0 | 568,371,715 | 100% | ||
andersonadeli | 0 | 611,383,621 | 100% |
چقدر به زبان انسان نزدیکتره جاوا اسکریپت در سی شارپ ارث بری رو با : نشون میدن
author | angela.ghkh |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t173008977z |
category | javascript |
json_metadata | {"tags":["javascript"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-06 17:28:57 |
last_update | 2018-02-06 17:28:57 |
depth | 1 |
children | 2 |
last_payout | 2018-02-13 17:28:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.128 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 2,888,077,605,665 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,454,693 |
net_rshares | 24,715,974,316 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,206,307,542 | 1% | ||
angela.ghkh | 0 | 14,509,666,774 | 50% |
<div dir="rtl" class="text-rtl"> ممنون. دستور نگارش (syntax) جاوا اسکریپت مانند زبان جاوا است. </div>
author | ghasemkiani |
---|---|
permlink | re-angelaghkh-re-ghasemkiani-javascript-basics-06-20180206t190110960z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 19:01:15 |
last_update | 2018-02-06 19:01:15 |
depth | 2 |
children | 1 |
last_payout | 2018-02-13 19:01:15 |
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 | 101 |
author_reputation | 90,438,911,242,538 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,472,573 |
net_rshares | 0 |
good one. thanks for your great educative post
author | mdmunna |
---|---|
permlink | re-ghasemkiani-re-angelaghkh-re-ghasemkiani-javascript-basics-06-20180207t092629486z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 09:26:39 |
last_update | 2018-02-07 09:26:39 |
depth | 3 |
children | 0 |
last_payout | 2018-02-14 09:26: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 | 47 |
author_reputation | 259,415,872,565 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,620,125 |
net_rshares | 0 |
Very useful post about JavaScript, In Future it will Move more forward with this kind of update technology. Thank you for share with us. @ghasemkiani
author | angryboy |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065824659z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 06:58:24 |
last_update | 2018-02-06 06:58:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:58:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 602,251,134,254 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,190 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Bisyar khub...
author | asgharali |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070035328z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:00:39 |
last_update | 2018-02-06 07:00:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:00:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 623,466,684,792,633 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,662 |
net_rshares | 6,492,850,357 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
asgharali | 0 | 1,390,089,108 | 3% |
keep it up learn much
author | azizulhassan |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t090446575z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 09:04:57 |
last_update | 2018-02-06 09:04:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 09:04:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 858,685,273,941 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,355,903 |
net_rshares | 5,749,793,458 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
azizulhassan | 0 | 647,032,209 | 100% |
Your blogs about JavaScript are really interesting and informative.
author | cheema1 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t185628043z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 18:56:15 |
last_update | 2018-02-07 18:56:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 18:56:15 |
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 | 58,597,604,888,712 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,726,810 |
net_rshares | 10,209,042,217 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,209,042,217 | 1% |
I love this article,thanks for the information
author | christinb |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065747610z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:57:57 |
last_update | 2018-02-06 06:57:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 251,519,740,777 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,114 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
That's really cool information @ghasemkiani
author | fikar22 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070426639z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 07:04:39 |
last_update | 2018-02-06 07:04:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:04:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 1,329,022,667,203 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,332,468 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
I really like this post ghasemkiani!
author | five34a4b |
---|---|
permlink | javascript-basics-06-comment |
category | javascript |
json_metadata | {} |
created | 2018-02-06 19:46:03 |
last_update | 2018-02-06 19:46:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 19:46: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 | 36 |
author_reputation | 1,119,681,610,239 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,480,612 |
net_rshares | 0 |
Nice educative post.
author | ghazanfar.ali |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065917127z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:59:18 |
last_update | 2018-02-06 06:59:18 |
depth | 1 |
children | 2 |
last_payout | 2018-02-13 06:59:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.888 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 17,908,385,529,326 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,368 |
net_rshares | 129,204,115,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
ghazanfar.ali | 0 | 115,747,599,552 | 100% | ||
leopard0505 | 0 | 7,760,797,909 | 100% | ||
sahinur | 0 | 592,956,477 | 100% |
good reading
author | misteryusf |
---|---|
permlink | re-ghazanfarali-re-ghasemkiani-javascript-basics-06-20180207t193319503z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 19:33:21 |
last_update | 2018-02-07 19:33:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-14 19:33: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 | 12 |
author_reputation | 2,875,566,821 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,733,478 |
net_rshares | 0 |
I agree with you too dear @ghazanfar.ali
author | sahinur |
---|---|
permlink | re-ghazanfarali-re-ghasemkiani-javascript-basics-06-20180206t124019663z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghazanfar.ali"],"app":"steemit/0.1"} |
created | 2018-02-06 12:40:30 |
last_update | 2018-02-06 12:40:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-13 12:40:30 |
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 | 40 |
author_reputation | 54,966,783,519 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,395,834 |
net_rshares | 0 |
درود احسنت بر شما عالیه
author | haji |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t120944413z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 12:09:54 |
last_update | 2018-02-06 12:09:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 12:09:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 3,030,788,981,572 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,390,185 |
net_rshares | 10,205,522,499 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,205,522,499 | 1% |
Excellent informative post.Thanks for sharing precious post. 
author | imran498 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070323065z |
category | javascript |
json_metadata | {"tags":["javascript"],"image":["https://steemitimages.com/DQmaAcXw47oxuMEJVLz3RUx1yCJnBoQFxefdxKc5hryeP6C/Screenshot_20180121-165547.png"],"app":"steemit/0.1"} |
created | 2018-02-06 07:03:33 |
last_update | 2018-02-06 07:03:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:03:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 3,152,030,349,302 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,332,227 |
net_rshares | 5,716,407,200 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
imran498 | 0 | 613,645,951 | 100% |
its so valuable post... i appreciate so much..so technical over all.. best of luck
author | jackjami |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065808084z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:58:06 |
last_update | 2018-02-06 06:58:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 76,494,243,379 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,142 |
net_rshares | 6,715,712,825 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
jackjami | 0 | 433,196,240 | 100% | ||
shanewatshon | 0 | 580,660,833 | 100% | ||
andersonadeli | 0 | 599,094,503 | 100% |
your are really good in java programming
author | jackjounior |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t085721172z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 08:57:21 |
last_update | 2018-02-06 08:57:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 08:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 100,421,392,737 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,354,516 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
JavaScript is very important for web developing
author | jahangirwifii |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064604305z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:46:03 |
last_update | 2018-02-06 06:46:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:46:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 37,205,590,144,986 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,328,760 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
great post fully informative one should want to learn about #javascript these tips are real gold for them . amazing dude . Thank you @ghasemkiani for this valuable share
author | jameshurst |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t201619086z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-07 20:16:21 |
last_update | 2018-02-07 20:16:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 20:16: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 | 169 |
author_reputation | 15,343,015,148 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,741,322 |
net_rshares | 0 |
nice informative post
author | kazmi1 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070001638z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:00:00 |
last_update | 2018-02-06 07:00:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:00: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 | 21 |
author_reputation | 3,714,572,604,837 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,529 |
net_rshares | 0 |
really a good educative post :) thanx for sharing
author | learner365 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t071958528z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:20:00 |
last_update | 2018-02-06 07:20:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:20:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 813,353,446,324 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,335,497 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
love to read your post. thanks for sharing
author | mdmunna |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t092204907z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 09:22:18 |
last_update | 2018-02-07 09:22:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 09:22:18 |
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 | 42 |
author_reputation | 259,415,872,565 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,619,435 |
net_rshares | 0 |
Hello dear STEEMIAN... You received this message as a follower of @lightingmacsteem. Do support the JOULESTEEM circuit posts to be able to learn ways to harness offgrid energy the non-wind nonsolar way. One-third of all author SBD rewards will also be distributed to all upvoters and resteemers. Visit the posts of @minnowminer and @lightingmacsteem to support, earn and learn!!!
author | minnowminer |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t014951155z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["lightingmacsteem","minnowminer"],"app":"steemit/0.1"} |
created | 2018-02-07 01:49:51 |
last_update | 2018-02-07 01:49:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 01:49:51 |
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 | 381 |
author_reputation | 47,431,573,418 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,542,506 |
net_rshares | 0 |
thanks for your very informative news... thats so important... keep it on
author | mokulkhan |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065516172z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:55:27 |
last_update | 2018-02-06 06:55:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:55:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | -637,566,498,122 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,330,581 |
net_rshares | 6,892,156,483 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
mokulkhan | 0 | 612,712,177 | 100% | ||
shanewatshon | 0 | 589,877,672 | 100% | ||
andersonadeli | 0 | 586,805,385 | 100% |
Hi..@ghasemkiani sir ..I need your help..plz sir follow me....I am your ragular upvote and commenter plz sir follow me
author | nayim533 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t170611351z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 17:06:15 |
last_update | 2018-02-06 17:06:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 17:06:15 |
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 | 118 |
author_reputation | 10,905,102,954 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,450,646 |
net_rshares | 10,213,601,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,213,601,672 | 1% |
good post dear @ghasemkiani carry on......
author | nazira |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t080626168z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 08:06:36 |
last_update | 2018-02-06 08:06:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 08:06:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 191,012,301,926 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,344,944 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
@ghasemkiani Yet another valuable blog. Thanks for sharing the JavaScript tutorial. Keep sharing. 
author | nishadhasan |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t094913417z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"image":["https://steemitimages.com/DQmaxQdXbmxbsA1ymV8GjmQTgx3wq9JCWHQDWH6vJc6QV86/thanks%20you.gif"],"app":"steemit/0.1"} |
created | 2018-02-06 09:49:15 |
last_update | 2018-02-06 09:49:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 09:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 629,661,035,277 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,364,064 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Dear sir...hopefuly u r good..l Your bolg alwayas educational for us..which are really helpful for me..Javescript is very much important for konwing this course.. thank you sir for ur konwledge sharing us..
author | nontu |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t110842188z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 11:05:30 |
last_update | 2018-02-06 11:05:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 11:05:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 95,485,306,875 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,378,005 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Its great,thanks for enlightening me more on JAVASCRIPT. Nice post it is and would love to get more from you,thanks.
author | oluwashizzy |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065136367z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:51:42 |
last_update | 2018-02-06 06:51:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:51:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | -631,742,871,824 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,864 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Important post for me. JavaScript is very important for web developing
author | polashsen |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065742096z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:58:12 |
last_update | 2018-02-06 06:58:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:58:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 381,544,604,809 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,163 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Very useful,, your posts with javascript programming are helping me to learn more about javascript. . Excellent post,, thank You sir @ghasemkiani
author | rahulsen |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t105422637z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 10:54:33 |
last_update | 2018-02-06 10:54:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 10:54:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 1,239,447,434,085 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,376,147 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
thanks for this post to @rasel1234 you aer giving a good post,, I love your post,,
author | rasel1234 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065852845z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["rasel1234"],"app":"steemit/0.1"} |
created | 2018-02-06 06:58:57 |
last_update | 2018-02-06 06:58:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:58:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 107,696,836,345 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,331,297 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Thanks for your valuable and informative post about science & technology. We can gather a lot of information by your post. By dint of, we can increase our skill that is beneficial for all steemians. I will always visit your site & wait for your upcoming post. Thanks
author | razibahmed |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t093718761z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 09:37:30 |
last_update | 2018-02-06 09:37:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 09:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 266 |
author_reputation | 577,720,267,332 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,361,898 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
great post ghasemkiani👌👌👌i like your all post dear... it is an important post i think... please carry on your activity...
author | riyad11 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064826932z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:48:33 |
last_update | 2018-02-06 06:48:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 83,439,904,438 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,273 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
This nice post i like it thanks for sharing this technology news best of luck..
author | rkaitra |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064953507z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:50:09 |
last_update | 2018-02-06 06:50:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:50:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 705,269,649,419 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,585 |
net_rshares | 5,563,323,978 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
rkaitra | 0 | 460,562,729 | 100% |
I had a good idea about the Java script but. I did not want to practice, I forgot my mother.♦thanks for sharing about technology.......@ghasemkiani
author | rojib |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065045222z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 06:50:48 |
last_update | 2018-02-06 06:50:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:50:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 27,854,877,404 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,697 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
well information i like it ............... keep it up thanks for shareing
author | rubeldas |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t081251877z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 08:13:42 |
last_update | 2018-02-06 08:13:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 08:13:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 124,562,149,586 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,346,364 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Nice educative post dear @ghasemkiani and great writing. i like and support your post all time. dear @ghasemkiani i will naver forget you. keep it up dear @ghasemkiani
author | sabbirahmedd |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t123139517z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 12:31:57 |
last_update | 2018-02-06 12:31:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 12:31:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 169 |
author_reputation | 1,260,451,635,452 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,394,222 |
net_rshares | 6,287,902,404 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
sabbirahmedd | 0 | 579,895,424 | 100% | ||
sahinur | 0 | 605,245,731 | 100% |
Sir you may know that i am new in steemit. so would you please help me to do good and earn a handsome amount ?
author | saddam1210 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t113539405z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 11:35:42 |
last_update | 2018-02-07 11:35:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 11:35:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.104 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 110,797,071,519 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,641,883 |
net_rshares | 20,418,046,801 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 20,418,046,801 | 2% |
very helpful post for programmers. Thank you sir. (Hope you are well. Stay safe.)
author | sam1210 |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t180709125z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 18:07:12 |
last_update | 2018-02-07 18:07:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 18:07:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.104 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 1,732,544,462,145 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,717,870 |
net_rshares | 20,418,084,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 20,418,084,435 | 2% |
good programming and Nice technoloy...and good post over all... I like so much... best of luck
author | shanewatshon |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070720812z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:07:27 |
last_update | 2018-02-06 07:07:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 07:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 274,087,800,756 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,333,033 |
net_rshares | 6,246,924,378 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
mokulkhan | 0 | 588,080,532 | 100% | ||
shanewatshon | 0 | 556,082,597 | 100% |
Very helpful for learning programming.This serice tutorial is so helpful for a student. Thanks @ghasemkiani
author | sharifulislamm |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t090006616z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-06 09:00:15 |
last_update | 2018-02-06 09:00:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 09:00:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 497,515,855,739 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,355,051 |
net_rshares | 5,102,761,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% |
Thanks for sharing this post..I appreciate technology..
author | sharminkona |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064634444z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:46:42 |
last_update | 2018-02-06 06:46:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 2,342,084,839,886 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,328,904 |
net_rshares | 5,492,633,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
sharminkona | 0 | 389,871,898 | 100% |
thanks for shairing this post. great technology @ghasemkiani
author | steemitservice |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t065216244z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1","users":["ghasemkiani"]} |
created | 2018-02-06 06:52:21 |
last_update | 2018-02-06 07:00:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 06:52:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 375,814,397,062 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,996 |
net_rshares | 5,718,415,670 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
steemitservice | 0 | 615,654,421 | 100% |
Thanks for info&visit @steemrobot
author | steemrobot |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t064613794z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1","users":["steemrobot"]} |
created | 2018-02-06 06:46:15 |
last_update | 2018-02-06 06:47:00 |
depth | 1 |
children | 1 |
last_payout | 2018-02-13 06:46:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 1,070,113,437,877 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,328,796 |
net_rshares | 5,647,788,996 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
pranto | 0 | 234,727,560 | 100% | ||
steemrobot | 0 | 310,300,187 | 100% |
Also thanks
author | pranto |
---|---|
permlink | re-steemrobot-re-ghasemkiani-javascript-basics-06-20180206t064841418z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 06:48:42 |
last_update | 2018-02-06 06:48:42 |
depth | 2 |
children | 0 |
last_payout | 2018-02-13 06:48: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 | 11 |
author_reputation | 4,636,466,930,802 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,329,298 |
net_rshares | 535,794,668 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pranto | 0 | 231,639,039 | 100% | ||
steemrobot | 0 | 304,155,629 | 100% |
that's pretty cool to know....
author | tigerflora |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t085526359z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 08:55:33 |
last_update | 2018-02-07 08:55:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 08:55:33 |
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 | 30 |
author_reputation | 39,501,276,189 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,615,005 |
net_rshares | 0 |
love to read it .........
author | tigerflora |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t085551002z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 08:55:54 |
last_update | 2018-02-07 08:55:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 08:55: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 | 25 |
author_reputation | 39,501,276,189 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,615,077 |
net_rshares | 0 |
fabulous one..
author | tigerflora |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t085614689z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 08:56:21 |
last_update | 2018-02-07 08:56:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 08:56: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 | 14 |
author_reputation | 39,501,276,189 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,615,138 |
net_rshares | 0 |
This is so great! You got the great point here......
author | tigerflora |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180207t085643717z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 08:56:48 |
last_update | 2018-02-07 08:56:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 08:56: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 | 52 |
author_reputation | 39,501,276,189 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,615,227 |
net_rshares | 0 |
I love your programming short tutorials. It helps us learn some basics in proper way.
author | zakir.quetta |
---|---|
permlink | re-ghasemkiani-javascript-basics-06-20180206t070950615z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 07:09:51 |
last_update | 2018-02-06 07:09:51 |
depth | 1 |
children | 2 |
last_payout | 2018-02-13 07:09:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.502 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 8,337,949,857,235 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,333,503 |
net_rshares | 73,426,759,308 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 5,102,761,249 | 0.5% | ||
zakir.quetta | 0 | 68,323,998,059 | 100% |
I agree with you too dear @zakir.quetta.so 100% love and 100%vote
author | sahinur |
---|---|
permlink | re-zakirquetta-re-ghasemkiani-javascript-basics-06-20180206t124231200z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-06 12:42:42 |
last_update | 2018-02-06 12:42:42 |
depth | 2 |
children | 1 |
last_payout | 2018-02-13 12:42: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 | 65 |
author_reputation | 54,966,783,519 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,396,288 |
net_rshares | 0 |
Thank you dear
author | zakir.quetta |
---|---|
permlink | re-sahinur-re-zakirquetta-re-ghasemkiani-javascript-basics-06-20180207t162650350z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-07 16:26:51 |
last_update | 2018-02-07 16:26:51 |
depth | 3 |
children | 0 |
last_payout | 2018-02-14 16:26:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.442 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 8,337,949,857,235 |
root_title | "JavaScript Basics: Object.prototype.hasOwnProperty" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,698,856 |
net_rshares | 65,579,302,501 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zakir.quetta | 0 | 65,579,302,501 | 100% |