The method `Reflect.apply` is just a better and more meaningful way to do `Function.prototype.apply`. In other words, it allows you to call the given function using a specified context (`this` argument) on an array of arguments. Here is an example: ``` let person = { name: "John", speak(city) { console.log(`Hi. I am ${this.name}. I am calling from ${city}.`); }, }; let someone = { name: "Jack", }; person.speak("Houston"); // Hi. I am John. I am calling from Houston. Reflect.apply(person.speak, someone, ["Boston"]); // Hi. I am Jack. I am calling from Boston. person.speak.apply(someone, ["Boston"]); // the same Function.prototype.apply.call(person.speak, someone, ["Boston"]); // the same ``` As I said in an earlier post, the `Reflect` object gathers all functionality related to reflection in one place. This makes it possible to write neater and more readable code. --- ## Related Posts * [JavaScript Basics: Reflect](https://steemit.com/javascript/@ghasemkiani/javascript-basics-10) * [JavaScript Basics: Reflect.construct](https://steemit.com/javascript/@ghasemkiani/javascript-basics-11)
author | ghasemkiani |
---|---|
permlink | javascript-basics-12 |
category | javascript |
json_metadata | {"tags":["javascript","programming","technology"],"app":"juya/app","format":"markdown","percent_steem_dollars":10000} |
created | 2018-02-16 03:08:09 |
last_update | 2018-02-16 03:08:09 |
depth | 0 |
children | 49 |
last_payout | 2018-02-23 03:08:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.746 HBD |
curator_payout_value | 0.102 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,130 |
author_reputation | 90,438,911,242,538 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,315 |
net_rshares | 1,110,126,154,388 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 934,607,643,102 | 100% | ||
manuel78 | 0 | 196,519,379 | 3% | ||
pibara | 0 | 33,534,781,863 | 100% | ||
riyansteem | 0 | 582,083,865 | 100% | ||
davidfar | 0 | 0 | 1% | ||
face2face | 0 | 8,418,644,778 | 21.65% | ||
blazing | 0 | 305,535,045 | 100% | ||
binam | 0 | 0 | 100% | ||
haji | 0 | 666,259,373 | 100% | ||
satyamsharma | 0 | 307,270,496 | 50% | ||
angela.ghkh | 0 | 11,705,891,521 | 35% | ||
nataliemk | 0 | 607,425,083 | 100% | ||
pepskaram | 0 | 16,597,814,952 | 100% | ||
johnwjr7 | 0 | 1,036,216,120 | 5% | ||
dxdei | 0 | 427,080,131 | 100% | ||
amerikali | 0 | 191,079,217 | 100% | ||
shariaislam | 0 | 237,285,365 | 100% | ||
calimeatwagon | 0 | 4,285,757,884 | 75% | ||
thepreacher | 0 | 320,366,094 | 30% | ||
nimik | 0 | 707,202,904 | 100% | ||
drags | 0 | 604,875,600 | 100% | ||
ai-crypto-tech | 0 | 0 | 100% | ||
hafiz34 | 0 | 4,037,078,401 | 50% | ||
rohit12123 | 0 | 0 | 2% | ||
sam1210 | 0 | 3,423,381,921 | 100% | ||
hhumaira | 0 | 613,380,401 | 100% | ||
adasq | 0 | 73,551,785,305 | 100% | ||
dumasari | 0 | 417,122,088 | 100% | ||
adelepazani | 0 | 3,284,803,953 | 15% | ||
hagstrom | 0 | 613,211,618 | 100% | ||
mazyar | 0 | 372,654,365 | 100% | ||
master11641 | 0 | 849,049,596 | 100% | ||
alinoroozi | 0 | 1,308,291,764 | 100% | ||
divaa | 0 | 370,197,744 | 100% | ||
danielvd | 0 | 605,637,100 | 100% | ||
biyanoor | 0 | 198,238,994 | 100% | ||
steemitjean | 0 | 236,093,478 | 100% | ||
benzlogin | 0 | 604,150,528 | 100% | ||
ipul01 | 0 | 279,066,541 | 100% | ||
ipoelkip | 0 | 0 | 100% | ||
mamaathiyya | 0 | 463,923,707 | 100% | ||
cometomyway | 0 | 545,861,088 | 100% | ||
phasewalker | 0 | 0 | 1% | ||
nurmasakti | 0 | 435,622,063 | 100% | ||
hsa61 | 0 | 504,124,229 | 100% | ||
sonia12 | 0 | 580,660,537 | 100% | ||
junaidiabdya | 0 | 356,383,751 | 100% | ||
nanu1 | 0 | 531,499,252 | 100% | ||
albob | 0 | 0 | 100% | ||
malibeauty | 0 | 604,203,192 | 100% | ||
kikee | 0 | 0 | 100% | ||
kabil | 0 | 0 | 100% | ||
nrsplastic | 0 | 0 | 100% | ||
salemsagai | 0 | 0 | 100% | ||
himanshusindhal | 0 | 0 | 100% |
Last line is really interesting... `Function.prototype.apply.call` Was not aware it works that way. Actually: `Function.prototype.call === Function.prototype.bind.call.apply.bind.call` So it seem that `Function.prototype` functions (`Function.prototype.bind`, `Function.prototype.call`, etc.) do have object linkage to `Function.prototype`object. We can even access such linkage. See here: `Function.prototype.apply.__proto__ === Function.prototype` That's why we can chain it deeply. Really interesting. Also was not aware of such Reflect feature. Thanks for sharing.
author | adasq |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t071314212z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 07:13:15 |
last_update | 2018-02-16 07:13:15 |
depth | 1 |
children | 1 |
last_payout | 2018-02-23 07:13:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.824 HBD |
curator_payout_value | 0.273 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 571 |
author_reputation | 17,083,257,821,007 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,936,440 |
net_rshares | 178,750,331,811 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 178,750,331,811 | 20% |
Thank you for your informative reply.
author | ghasemkiani |
---|---|
permlink | re-adasq-re-ghasemkiani-javascript-basics-12-20180216t091121343z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 09:11:24 |
last_update | 2018-02-16 09:11:24 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 09:11: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 | 37 |
author_reputation | 90,438,911,242,538 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,958,012 |
net_rshares | 613,404,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
malibeauty | 0 | 613,404,255 | 100% |
great
author | agyapong |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t092004945z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 09:20:09 |
last_update | 2018-02-16 09:20:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:20: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 | 5 |
author_reputation | 195,900,825,839 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,959,531 |
net_rshares | 0 |
cool post. i am also a js developer from time to time
author | ai-crypto-tech |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180302t221631624z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-03-02 22:16:33 |
last_update | 2018-03-02 22:16:33 |
depth | 1 |
children | 0 |
last_payout | 2018-03-09 22:16:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 1,608,615,115,176 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,733,571 |
net_rshares | 10,212,624,961 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,212,624,961 | 1% |
very well post dear friend @ghasemkiani
author | alimuddin |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t084749966z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-16 08:48:00 |
last_update | 2018-02-16 08:48:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 08:48: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 | 39 |
author_reputation | 1,508,436,968,834 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,953,861 |
net_rshares | 0 |
another interesting information about reflect , thanks
author | angela.ghkh |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180217t204408108z |
category | javascript |
json_metadata | {"tags":["javascript"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-17 20:42:45 |
last_update | 2018-02-17 20:42:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 20:42:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 2,888,077,605,665 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,346,384 |
net_rshares | 10,215,027,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,215,027,133 | 1% |
Carry on your activitys
author | azizurrahman |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t032904118z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:29:09 |
last_update | 2018-02-16 03:29:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:29: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 | 23 |
author_reputation | 47,440,725,879 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,897,967 |
net_rshares | 0 |
programing is a language of computer you input this his language and its output your language now its a very important in every sphere carry on
author | beautybox |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031405985z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:14:27 |
last_update | 2018-02-16 03:14:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:14: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 | 143 |
author_reputation | -237,024,013,186 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,895,424 |
net_rshares | 604,170,758 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beautybox | 0 | 604,170,758 | 100% |
Thank you for sharing and teaching others sir..
author | biyanoor |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031008535z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:10:15 |
last_update | 2018-02-16 03:10:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:10: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 | 47 |
author_reputation | 701,322,986,706 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,693 |
net_rshares | 0 |
Looks like i still need to learn a lot of programming :) but many thanks for sharing it
author | blazing |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180218t062102436z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-18 06:21:03 |
last_update | 2018-02-18 06:21:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 06:21:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 117,662,220,860,076 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,438,808 |
net_rshares | 10,215,034,493 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,215,034,493 | 1% |
Nice Post .. Followed you..
author | cometomyway |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t183716124z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 18:37:42 |
last_update | 2018-02-16 18:37:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 18:37: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 | 27 |
author_reputation | 53,242,423,120 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,067,577 |
net_rshares | 0 |
Informative post.
author | divaa |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t053912598z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 05:39:09 |
last_update | 2018-02-16 05:39:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:39:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 86,580,419,797 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,921,515 |
net_rshares | 10,214,886,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,886,487 | 1% |
Hi I'm duma, I'm calling from Indonesia :)
author | dumasari | ||||||
---|---|---|---|---|---|---|---|
permlink | re-ghasemkiani-2018216t101140516z | ||||||
category | javascript | ||||||
json_metadata | {"tags":["javascript","programming","technology"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 03:11:45 | ||||||
last_update | 2018-02-16 03:11:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 03:11:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.044 HBD | ||||||
curator_payout_value | 0.014 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 42 | ||||||
author_reputation | 5,400,840,662,642 | ||||||
root_title | "JavaScript Basics: Reflect.apply" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,894,957 | ||||||
net_rshares | 10,214,384,406 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,384,406 | 1% |
you are a good javascript programmer. well done @ghasemkiani
author | expertroyal |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t064337725z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-16 06:43:39 |
last_update | 2018-02-16 06:43:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 06:43: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 | 60 |
author_reputation | 455,559,043,487 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,931,496 |
net_rshares | 0 |
great post, ghasemkiani as usual!
author | five34a4b |
---|---|
permlink | javascript-basics-12-comment |
category | javascript |
json_metadata | {} |
created | 2018-02-18 19:55:24 |
last_update | 2018-02-18 19:55:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 19:55:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 1,119,681,610,239 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,598,842 |
net_rshares | 10,215,167,363 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,215,167,363 | 1% |
nice post bro
author | haji |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t081216514z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 08:12:30 |
last_update | 2018-02-16 08:12:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 08:12:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 3,030,788,981,572 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,947,254 |
net_rshares | 10,214,886,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,886,487 | 1% |
مشتی ساپورت ♥
author | haji |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180219t184133197z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-19 18:41:51 |
last_update | 2018-02-19 18:41:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 18:41:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 3,030,788,981,572 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,857,285 |
net_rshares | 10,212,334,809 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,212,334,809 | 1% |
Thanks for giving us a new topic.It is an educative value for us.We can get many concept about javascript,programming & so on. Thanks @Ressteem,upvote & follow done.
author | hhumaira |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031055985z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ressteem"],"app":"steemit/0.1"} |
created | 2018-02-16 03:11:03 |
last_update | 2018-02-16 03:11:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:11: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 | 165 |
author_reputation | 826,469,951,757 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,827 |
net_rshares | 0 |
Your information is very useful, the work you do is very meaningful, I really appreciate post @ghasemkiani
author | ipul01 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t033723128z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-16 03:37:30 |
last_update | 2018-02-16 03:37:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:37: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 | 106 |
author_reputation | 188,847,656,148 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,899,427 |
net_rshares | 0 |
Thanks for share JavaScript
author | jahangirwifii |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t033327655z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:33:42 |
last_update | 2018-02-16 03:33:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03: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 | 27 |
author_reputation | 37,205,590,144,986 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,898,781 |
net_rshares | 0 |
nice program. i like it
author | kazmi1 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t051414147z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 05:14:15 |
last_update | 2018-02-16 05:14:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:14: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 | 23 |
author_reputation | 3,714,572,604,837 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,917,107 |
net_rshares | 0 |
it's very informative post.
author | killerkuasha |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t062537037z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 06:25:42 |
last_update | 2018-02-16 06:25:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 06:25: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 | 27 |
author_reputation | 2,213,124,390,757 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,928,630 |
net_rshares | 3,348,528,929 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
killerkuasha | 0 | 3,348,528,929 | 100% |
I am not so good in javascript but this is informative 😊
author | madiha |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180221t102338529z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-21 10:23:51 |
last_update | 2018-02-21 10:23:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-28 10:23:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 131,707,648,546 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,311,701 |
net_rshares | 10,212,473,798 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,212,473,798 | 1% |
its a great info.i really praise your activity.. many thanks for sharing us...
author | malibeauty |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180220t033749644z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-20 03:37:57 |
last_update | 2018-02-20 03:37:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 03:37:57 |
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 | 79 |
author_reputation | -321,591,667,399 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,955,823 |
net_rshares | 0 |
I always follow your post everything is good if any time visit my blog @mamaathiyya
author | mamaathiyya |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031154547z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["mamaathiyya"],"app":"steemit/0.1"} |
created | 2018-02-16 03:11:57 |
last_update | 2018-02-16 03:11:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:11:57 |
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 | 83 |
author_reputation | 6,040,934,744 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,999 |
net_rshares | 0 |
it so helpful post for us...... thanks for sharing.
author | mdmunna |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t053824791z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 05:38:45 |
last_update | 2018-02-16 05:38:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:38: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 | 51 |
author_reputation | 259,415,872,565 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,921,444 |
net_rshares | 613,330,029 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mdmunna | 0 | 613,330,029 | 100% |
That's a great gaming programming...Keep it up...
author | mdraba |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031416863z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:14:15 |
last_update | 2018-02-16 03:14:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:14: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 | 49 |
author_reputation | 756,201,318,491 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,895,399 |
net_rshares | 616,225,841 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mdraba | 0 | 616,225,841 | 100% |
Upvote and resteemit...
author | mdraba |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031437524z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:14:36 |
last_update | 2018-02-16 03:14:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:14: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 | 23 |
author_reputation | 756,201,318,491 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,895,451 |
net_rshares | 0 |
thanks for your educative blog... best of luck....
author | mokulkhan |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t033013576z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:30:21 |
last_update | 2018-02-16 03:30:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:30: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 | 50 |
author_reputation | -637,566,498,122 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,898,187 |
net_rshares | 0 |
Nice post sir.
author | nanu1 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t084657454z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 08:40:18 |
last_update | 2018-02-16 08:40:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 08:40: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 | 14 |
author_reputation | 2,905,403,928 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,952,421 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nanu1 | 0 | 0 | 0% |
well wrote dear @ghasemkiani
author | nazira |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t040750531z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-16 04:08:12 |
last_update | 2018-02-16 04:08:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 04:08: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 | 28 |
author_reputation | 191,012,301,926 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,905,116 |
net_rshares | 0 |
Good post, thanks for sharing this post.
author | nimik |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t043340502z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 04:33:39 |
last_update | 2018-02-16 04:33:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 04:33:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 856,557,847,201 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,909,771 |
net_rshares | 10,214,291,181 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,291,181 | 1% |
@ghasemkiani **Good tutorial. I just love this. Thanks for sharing.**
author | nishadhasan |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t054757668z |
category | javascript |
json_metadata | {"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"} |
created | 2018-02-16 05:47:57 |
last_update | 2018-02-16 05:47:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:47:57 |
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 | 629,661,035,277 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,922,950 |
net_rshares | 0 |
This is my favorite javascript...
author | nnajmull |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t034043896z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:40:54 |
last_update | 2018-02-16 03:40:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:40: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 | 33 |
author_reputation | 2,748,649,816,494 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,900,007 |
net_rshares | 0 |
Like back
author | nurmasakti | ||||||
---|---|---|---|---|---|---|---|
permlink | re-ghasemkiani-2018216t101456455z | ||||||
category | javascript | ||||||
json_metadata | {"tags":["javascript","programming","technology"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 03:15:00 | ||||||
last_update | 2018-02-16 03:15:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 03:15: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 | 9 | ||||||
author_reputation | 193,226,230,023 | ||||||
root_title | "JavaScript Basics: Reflect.apply" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,895,514 | ||||||
net_rshares | 0 |
add-on on the Reflect post, thanks,
author | plainoldme |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180219t072434518z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-19 07:24:36 |
last_update | 2018-02-19 07:24:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 07:24: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 | 35 |
author_reputation | 713,624,891,901 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,720,625 |
net_rshares | 0 |
javascript is a advance programming language . i try c language as a begainer
author | princeparvej |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031503473z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:15:12 |
last_update | 2018-02-16 03:15:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:15: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 | 79 |
author_reputation | 73,318,784,018 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,895,561 |
net_rshares | 0 |
nice post...thanks for share
author | razibahmed |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t034034007z |
category | javascript |
json_metadata | {"tags":["javascript"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-16 03:40:39 |
last_update | 2018-02-16 03:40:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:40: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 | 28 |
author_reputation | 577,720,267,332 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,899,966 |
net_rshares | 0 |
its the bleesing of science.and important also... carry on please. i will wait for your next info....
author | riyad11 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180220t033558647z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-20 03:36:03 |
last_update | 2018-02-20 03:36:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 03:36: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 | 102 |
author_reputation | 83,439,904,438 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,955,439 |
net_rshares | 0 |
This nice post iappreciate your programming thanks for sharing this technology..Carry on..
author | rkaitra |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t031146475z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:11:57 |
last_update | 2018-02-16 03:11:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:11:57 |
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 | 90 |
author_reputation | 705,269,649,419 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,991 |
net_rshares | 0 |
That's a great and outstanding programming ..Resteemit done..
author | rrahim |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t032706958z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:27:24 |
last_update | 2018-02-16 03:27:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:27: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 | 61 |
author_reputation | 1,013,378,964,376 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,897,670 |
net_rshares | 564,560,403 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rrahim | 0 | 564,560,403 | 100% |
Good post..Keep it up..
author | rrahim |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t032801515z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:28:12 |
last_update | 2018-02-16 03:28:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:28: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 | 23 |
author_reputation | 1,013,378,964,376 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,897,796 |
net_rshares | 0 |
sir as a new steemers i want your help by my post
author | saddam1210 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180217t043224912z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-17 04:32:24 |
last_update | 2018-02-17 04:32:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 04:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 110,797,071,519 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,165,599 |
net_rshares | 10,214,484,580 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,484,580 | 1% |
I didn't understood
author | safamarwa |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180220t190132448z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-20 19:01:33 |
last_update | 2018-02-20 19:01:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 19:01:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 69,013,167,907 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,141,754 |
net_rshares | 13,202,029,417 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,212,434,555 | 1% | ||
robertsekhose | 0 | 2,989,594,862 | 100% |
Have a nice day sir, Stay safe.
author | sam1210 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t091530396z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 09:15:30 |
last_update | 2018-02-16 09:15:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:15:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 1,732,544,462,145 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,958,769 |
net_rshares | 10,214,384,406 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,214,384,406 | 1% |
Thanks for sharing this post. I appreciate your every post ..Best of luck.
author | sharminkona |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t030916772z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:09:24 |
last_update | 2018-02-16 03:09:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:09: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 | 74 |
author_reputation | 2,342,084,839,886 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,894,523 |
net_rshares | 0 |
person.speak("thanks for the post, this will Reflect in future coding of mine");
author | steamit2 |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180219t073611366z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-19 07:36:12 |
last_update | 2018-02-19 07:36:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 07:36:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 17,666,968,293 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,722,702 |
net_rshares | 10,215,167,363 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghasemkiani | 0 | 10,215,167,363 | 1% |
well thanks for sharing .. learning have a nice day bro
author | steemitservice |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t033141212z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:31:45 |
last_update | 2018-02-16 03:31:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:31: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 | 55 |
author_reputation | 375,814,397,062 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,898,434 |
net_rshares | 612,457,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemitservice | 0 | 612,457,382 | 100% |
Thanks for this post, very informative i hope you keep sharing with us all your knowledge
author | vanemilano |
---|---|
permlink | re-ghasemkiani-javascript-basics-12-20180216t034052882z |
category | javascript |
json_metadata | {"tags":["javascript"],"app":"steemit/0.1"} |
created | 2018-02-16 03:12:00 |
last_update | 2018-02-16 03:12:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 03:12: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 | 89 |
author_reputation | 301,065,647,470 |
root_title | "JavaScript Basics: Reflect.apply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,895,011 |
net_rshares | 0 |