create account

JavaScript Basics: Reflect.apply by ghasemkiani

View this thread on: hive.blogpeakd.comecency.com
· @ghasemkiani ·
$6.85
JavaScript Basics: Reflect.apply
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)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorghasemkiani
permlinkjavascript-basics-12
categoryjavascript
json_metadata{"tags":["javascript","programming","technology"],"app":"juya/app","format":"markdown","percent_steem_dollars":10000}
created2018-02-16 03:08:09
last_update2018-02-16 03:08:09
depth0
children49
last_payout2018-02-23 03:08:09
cashout_time1969-12-31 23:59:59
total_payout_value6.746 HBD
curator_payout_value0.102 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,130
author_reputation90,438,911,242,538
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,315
net_rshares1,110,126,154,388
author_curate_reward""
vote details (55)
@adasq ·
$1.10
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.
👍  
properties (23)
authoradasq
permlinkre-ghasemkiani-javascript-basics-12-20180216t071314212z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 07:13:15
last_update2018-02-16 07:13:15
depth1
children1
last_payout2018-02-23 07:13:15
cashout_time1969-12-31 23:59:59
total_payout_value0.824 HBD
curator_payout_value0.273 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length571
author_reputation17,083,257,821,007
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,936,440
net_rshares178,750,331,811
author_curate_reward""
vote details (1)
@ghasemkiani ·
Thank you for your informative reply.
👍  
properties (23)
authorghasemkiani
permlinkre-adasq-re-ghasemkiani-javascript-basics-12-20180216t091121343z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 09:11:24
last_update2018-02-16 09:11:24
depth2
children0
last_payout2018-02-23 09:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation90,438,911,242,538
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,958,012
net_rshares613,404,255
author_curate_reward""
vote details (1)
@agyapong ·
great
properties (22)
authoragyapong
permlinkre-ghasemkiani-javascript-basics-12-20180216t092004945z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 09:20:09
last_update2018-02-16 09:20:09
depth1
children0
last_payout2018-02-23 09:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation195,900,825,839
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,959,531
net_rshares0
@ai-crypto-tech ·
$0.04
cool post. i am also a js developer from time to time
👍  
properties (23)
authorai-crypto-tech
permlinkre-ghasemkiani-javascript-basics-12-20180302t221631624z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-03-02 22:16:33
last_update2018-03-02 22:16:33
depth1
children0
last_payout2018-03-09 22:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation1,608,615,115,176
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,733,571
net_rshares10,212,624,961
author_curate_reward""
vote details (1)
@alimuddin ·
very well post dear friend @ghasemkiani
properties (22)
authoralimuddin
permlinkre-ghasemkiani-javascript-basics-12-20180216t084749966z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-16 08:48:00
last_update2018-02-16 08:48:00
depth1
children0
last_payout2018-02-23 08:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,508,436,968,834
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,953,861
net_rshares0
@angela.ghkh ·
$0.04
another interesting information about reflect , thanks
👍  
properties (23)
authorangela.ghkh
permlinkre-ghasemkiani-javascript-basics-12-20180217t204408108z
categoryjavascript
json_metadata{"tags":["javascript"],"community":"busy","app":"busy/2.3.0"}
created2018-02-17 20:42:45
last_update2018-02-17 20:42:45
depth1
children0
last_payout2018-02-24 20:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation2,888,077,605,665
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,346,384
net_rshares10,215,027,133
author_curate_reward""
vote details (1)
@azizurrahman ·
Carry on your activitys
properties (22)
authorazizurrahman
permlinkre-ghasemkiani-javascript-basics-12-20180216t032904118z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:29:09
last_update2018-02-16 03:29:09
depth1
children0
last_payout2018-02-23 03:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation47,440,725,879
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,897,967
net_rshares0
@beautybox ·
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
👍  
properties (23)
authorbeautybox
permlinkre-ghasemkiani-javascript-basics-12-20180216t031405985z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:14:27
last_update2018-02-16 03:14:27
depth1
children0
last_payout2018-02-23 03:14:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation-237,024,013,186
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,424
net_rshares604,170,758
author_curate_reward""
vote details (1)
@biyanoor ·
Thank you for sharing and teaching others sir..
properties (22)
authorbiyanoor
permlinkre-ghasemkiani-javascript-basics-12-20180216t031008535z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:10:15
last_update2018-02-16 03:10:15
depth1
children0
last_payout2018-02-23 03:10:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation701,322,986,706
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,693
net_rshares0
@blazing ·
$0.06
Looks like i still need to learn a lot of programming :) 
but many thanks for sharing it
👍  
properties (23)
authorblazing
permlinkre-ghasemkiani-javascript-basics-12-20180218t062102436z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-18 06:21:03
last_update2018-02-18 06:21:03
depth1
children0
last_payout2018-02-25 06:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation117,662,220,860,076
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,438,808
net_rshares10,215,034,493
author_curate_reward""
vote details (1)
@cometomyway ·
Nice Post ..
Followed you..
properties (22)
authorcometomyway
permlinkre-ghasemkiani-javascript-basics-12-20180216t183716124z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 18:37:42
last_update2018-02-16 18:37:42
depth1
children0
last_payout2018-02-23 18:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation53,242,423,120
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,067,577
net_rshares0
@divaa ·
$0.06
Informative post.
👍  
properties (23)
authordivaa
permlinkre-ghasemkiani-javascript-basics-12-20180216t053912598z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 05:39:09
last_update2018-02-16 05:39:09
depth1
children0
last_payout2018-02-23 05:39:09
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation86,580,419,797
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,921,515
net_rshares10,214,886,487
author_curate_reward""
vote details (1)
@dumasari ·
$0.06
Hi I'm duma, I'm calling from Indonesia :)
👍  
properties (23)
authordumasari
permlinkre-ghasemkiani-2018216t101140516z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-16 03:11:45
last_update2018-02-16 03:11:45
depth1
children0
last_payout2018-02-23 03:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation5,400,840,662,642
root_title"JavaScript Basics: Reflect.apply"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,957
net_rshares10,214,384,406
author_curate_reward""
vote details (1)
@expertroyal ·
you are a good javascript programmer. well done @ghasemkiani
properties (22)
authorexpertroyal
permlinkre-ghasemkiani-javascript-basics-12-20180216t064337725z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-16 06:43:39
last_update2018-02-16 06:43:39
depth1
children0
last_payout2018-02-23 06:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation455,559,043,487
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,931,496
net_rshares0
@five34a4b ·
$0.06
javascript-basics-12-comment
great post, ghasemkiani as usual!
👍  
properties (23)
authorfive34a4b
permlinkjavascript-basics-12-comment
categoryjavascript
json_metadata{}
created2018-02-18 19:55:24
last_update2018-02-18 19:55:24
depth1
children0
last_payout2018-02-25 19:55:24
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation1,119,681,610,239
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,598,842
net_rshares10,215,167,363
author_curate_reward""
vote details (1)
@haji ·
$0.06
nice post bro
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-javascript-basics-12-20180216t081216514z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 08:12:30
last_update2018-02-16 08:12:30
depth1
children0
last_payout2018-02-23 08:12:30
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,030,788,981,572
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,947,254
net_rshares10,214,886,487
author_curate_reward""
vote details (1)
@haji ·
$0.06
مشتی ساپورت ♥
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-javascript-basics-12-20180219t184133197z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-19 18:41:51
last_update2018-02-19 18:41:51
depth1
children0
last_payout2018-02-26 18:41:51
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,030,788,981,572
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,857,285
net_rshares10,212,334,809
author_curate_reward""
vote details (1)
@hhumaira ·
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.
properties (22)
authorhhumaira
permlinkre-ghasemkiani-javascript-basics-12-20180216t031055985z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ressteem"],"app":"steemit/0.1"}
created2018-02-16 03:11:03
last_update2018-02-16 03:11:03
depth1
children0
last_payout2018-02-23 03:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation826,469,951,757
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,827
net_rshares0
@ipul01 ·
Your information is very useful, the work you do is very meaningful, I really appreciate post @ghasemkiani
properties (22)
authoripul01
permlinkre-ghasemkiani-javascript-basics-12-20180216t033723128z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-16 03:37:30
last_update2018-02-16 03:37:30
depth1
children0
last_payout2018-02-23 03:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation188,847,656,148
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,899,427
net_rshares0
@jahangirwifii ·
Thanks for share JavaScript
properties (22)
authorjahangirwifii
permlinkre-ghasemkiani-javascript-basics-12-20180216t033327655z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:33:42
last_update2018-02-16 03:33:42
depth1
children0
last_payout2018-02-23 03:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation37,205,590,144,986
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,898,781
net_rshares0
@kazmi1 ·
nice program. i like it
properties (22)
authorkazmi1
permlinkre-ghasemkiani-javascript-basics-12-20180216t051414147z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 05:14:15
last_update2018-02-16 05:14:15
depth1
children0
last_payout2018-02-23 05:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation3,714,572,604,837
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,917,107
net_rshares0
@killerkuasha ·
it's very informative post.
👍  
properties (23)
authorkillerkuasha
permlinkre-ghasemkiani-javascript-basics-12-20180216t062537037z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 06:25:42
last_update2018-02-16 06:25:42
depth1
children0
last_payout2018-02-23 06:25:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation2,213,124,390,757
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,928,630
net_rshares3,348,528,929
author_curate_reward""
vote details (1)
@madiha ·
$0.06
I am not so good in javascript  but this is informative 😊
👍  
properties (23)
authormadiha
permlinkre-ghasemkiani-javascript-basics-12-20180221t102338529z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-21 10:23:51
last_update2018-02-21 10:23:51
depth1
children0
last_payout2018-02-28 10:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation131,707,648,546
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,311,701
net_rshares10,212,473,798
author_curate_reward""
vote details (1)
@malibeauty ·
its a great info.i really praise your activity..

many thanks for sharing us...
properties (22)
authormalibeauty
permlinkre-ghasemkiani-javascript-basics-12-20180220t033749644z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-20 03:37:57
last_update2018-02-20 03:37:57
depth1
children0
last_payout2018-02-27 03:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation-321,591,667,399
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,955,823
net_rshares0
@mamaathiyya ·
I always follow your post everything is good if any time visit my blog @mamaathiyya
properties (22)
authormamaathiyya
permlinkre-ghasemkiani-javascript-basics-12-20180216t031154547z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["mamaathiyya"],"app":"steemit/0.1"}
created2018-02-16 03:11:57
last_update2018-02-16 03:11:57
depth1
children0
last_payout2018-02-23 03:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation6,040,934,744
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,999
net_rshares0
@mdmunna ·
it so helpful post for us......
thanks for sharing.
👍  
properties (23)
authormdmunna
permlinkre-ghasemkiani-javascript-basics-12-20180216t053824791z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 05:38:45
last_update2018-02-16 05:38:45
depth1
children0
last_payout2018-02-23 05:38:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation259,415,872,565
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,921,444
net_rshares613,330,029
author_curate_reward""
vote details (1)
@mdraba ·
That's a great gaming programming...Keep it up...
👍  
properties (23)
authormdraba
permlinkre-ghasemkiani-javascript-basics-12-20180216t031416863z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:14:15
last_update2018-02-16 03:14:15
depth1
children0
last_payout2018-02-23 03:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation756,201,318,491
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,399
net_rshares616,225,841
author_curate_reward""
vote details (1)
@mdraba ·
Upvote and resteemit...
properties (22)
authormdraba
permlinkre-ghasemkiani-javascript-basics-12-20180216t031437524z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:14:36
last_update2018-02-16 03:14:36
depth1
children0
last_payout2018-02-23 03:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation756,201,318,491
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,451
net_rshares0
@mokulkhan ·
thanks for your educative blog...
best of luck....
properties (22)
authormokulkhan
permlinkre-ghasemkiani-javascript-basics-12-20180216t033013576z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:30:21
last_update2018-02-16 03:30:21
depth1
children0
last_payout2018-02-23 03:30:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation-637,566,498,122
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,898,187
net_rshares0
@nanu1 ·
Nice post sir.
👍  
properties (23)
authornanu1
permlinkre-ghasemkiani-javascript-basics-12-20180216t084657454z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 08:40:18
last_update2018-02-16 08:40:18
depth1
children0
last_payout2018-02-23 08:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,905,403,928
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,952,421
net_rshares0
author_curate_reward""
vote details (1)
@nazira ·
well wrote dear @ghasemkiani
properties (22)
authornazira
permlinkre-ghasemkiani-javascript-basics-12-20180216t040750531z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-16 04:08:12
last_update2018-02-16 04:08:12
depth1
children0
last_payout2018-02-23 04:08:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation191,012,301,926
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,905,116
net_rshares0
@nimik ·
$0.06
Good post, thanks for sharing this post.
👍  
properties (23)
authornimik
permlinkre-ghasemkiani-javascript-basics-12-20180216t043340502z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 04:33:39
last_update2018-02-16 04:33:39
depth1
children0
last_payout2018-02-23 04:33:39
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation856,557,847,201
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,909,771
net_rshares10,214,291,181
author_curate_reward""
vote details (1)
@nishadhasan ·
@ghasemkiani **Good tutorial. I just love this. Thanks for sharing.**
properties (22)
authornishadhasan
permlinkre-ghasemkiani-javascript-basics-12-20180216t054757668z
categoryjavascript
json_metadata{"tags":["javascript"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-02-16 05:47:57
last_update2018-02-16 05:47:57
depth1
children0
last_payout2018-02-23 05:47:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation629,661,035,277
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,922,950
net_rshares0
@nnajmull ·
This is my favorite javascript...
properties (22)
authornnajmull
permlinkre-ghasemkiani-javascript-basics-12-20180216t034043896z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:40:54
last_update2018-02-16 03:40:54
depth1
children0
last_payout2018-02-23 03:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation2,748,649,816,494
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,900,007
net_rshares0
@nurmasakti ·
Like back
properties (22)
authornurmasakti
permlinkre-ghasemkiani-2018216t101456455z
categoryjavascript
json_metadata{"tags":["javascript","programming","technology"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-16 03:15:00
last_update2018-02-16 03:15:00
depth1
children0
last_payout2018-02-23 03:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation193,226,230,023
root_title"JavaScript Basics: Reflect.apply"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,514
net_rshares0
@plainoldme ·
add-on on the Reflect post, thanks,
properties (22)
authorplainoldme
permlinkre-ghasemkiani-javascript-basics-12-20180219t072434518z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-19 07:24:36
last_update2018-02-19 07:24:36
depth1
children0
last_payout2018-02-26 07:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation713,624,891,901
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,720,625
net_rshares0
@princeparvej ·
javascript is a  advance programming language . i  try c language as a begainer
properties (22)
authorprinceparvej
permlinkre-ghasemkiani-javascript-basics-12-20180216t031503473z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:15:12
last_update2018-02-16 03:15:12
depth1
children0
last_payout2018-02-23 03:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation73,318,784,018
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,561
net_rshares0
@razibahmed ·
nice post...thanks for share
properties (22)
authorrazibahmed
permlinkre-ghasemkiani-javascript-basics-12-20180216t034034007z
categoryjavascript
json_metadata{"tags":["javascript"],"community":"busy","app":"busy/2.3.0"}
created2018-02-16 03:40:39
last_update2018-02-16 03:40:39
depth1
children0
last_payout2018-02-23 03:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation577,720,267,332
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,899,966
net_rshares0
@riyad11 ·
its the bleesing of science.and 
important also...
carry on please.
i will wait for your next info....
properties (22)
authorriyad11
permlinkre-ghasemkiani-javascript-basics-12-20180220t033558647z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-20 03:36:03
last_update2018-02-20 03:36:03
depth1
children0
last_payout2018-02-27 03:36:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation83,439,904,438
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,955,439
net_rshares0
@rkaitra ·
This nice post iappreciate your programming thanks for sharing this technology..Carry on..
properties (22)
authorrkaitra
permlinkre-ghasemkiani-javascript-basics-12-20180216t031146475z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:11:57
last_update2018-02-16 03:11:57
depth1
children0
last_payout2018-02-23 03:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation705,269,649,419
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,991
net_rshares0
@rrahim ·
That's a great and outstanding programming ..Resteemit done..
👍  
properties (23)
authorrrahim
permlinkre-ghasemkiani-javascript-basics-12-20180216t032706958z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:27:24
last_update2018-02-16 03:27:24
depth1
children0
last_payout2018-02-23 03:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation1,013,378,964,376
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,897,670
net_rshares564,560,403
author_curate_reward""
vote details (1)
@rrahim ·
Good post..Keep it up..
properties (22)
authorrrahim
permlinkre-ghasemkiani-javascript-basics-12-20180216t032801515z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:28:12
last_update2018-02-16 03:28:12
depth1
children0
last_payout2018-02-23 03:28:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation1,013,378,964,376
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,897,796
net_rshares0
@saddam1210 ·
$0.06
sir as a new steemers i want  your help by my  post
👍  
properties (23)
authorsaddam1210
permlinkre-ghasemkiani-javascript-basics-12-20180217t043224912z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-17 04:32:24
last_update2018-02-17 04:32:24
depth1
children0
last_payout2018-02-24 04:32:24
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation110,797,071,519
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,165,599
net_rshares10,214,484,580
author_curate_reward""
vote details (1)
@safamarwa ·
$0.07
I didn't understood
👍  ,
properties (23)
authorsafamarwa
permlinkre-ghasemkiani-javascript-basics-12-20180220t190132448z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-20 19:01:33
last_update2018-02-20 19:01:33
depth1
children0
last_payout2018-02-27 19:01:33
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation69,013,167,907
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,141,754
net_rshares13,202,029,417
author_curate_reward""
vote details (2)
@sam1210 ·
$0.06
Have a nice day sir, Stay safe.
👍  
properties (23)
authorsam1210
permlinkre-ghasemkiani-javascript-basics-12-20180216t091530396z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 09:15:30
last_update2018-02-16 09:15:30
depth1
children0
last_payout2018-02-23 09:15:30
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation1,732,544,462,145
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,958,769
net_rshares10,214,384,406
author_curate_reward""
vote details (1)
@sharminkona ·
Thanks for sharing this post.
I appreciate your every post ..Best of luck.
properties (22)
authorsharminkona
permlinkre-ghasemkiani-javascript-basics-12-20180216t030916772z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:09:24
last_update2018-02-16 03:09:24
depth1
children0
last_payout2018-02-23 03:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation2,342,084,839,886
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,894,523
net_rshares0
@steamit2 ·
$0.06
person.speak("thanks for the post, this will Reflect in future coding of mine");
👍  
properties (23)
authorsteamit2
permlinkre-ghasemkiani-javascript-basics-12-20180219t073611366z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-19 07:36:12
last_update2018-02-19 07:36:12
depth1
children0
last_payout2018-02-26 07:36:12
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation17,666,968,293
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,722,702
net_rshares10,215,167,363
author_curate_reward""
vote details (1)
@steemitservice ·
well thanks for sharing .. learning have a nice day bro
👍  
properties (23)
authorsteemitservice
permlinkre-ghasemkiani-javascript-basics-12-20180216t033141212z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:31:45
last_update2018-02-16 03:31:45
depth1
children0
last_payout2018-02-23 03:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation375,814,397,062
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,898,434
net_rshares612,457,382
author_curate_reward""
vote details (1)
@vanemilano ·
Thanks for this post, very informative i hope you keep sharing with us all your knowledge
properties (22)
authorvanemilano
permlinkre-ghasemkiani-javascript-basics-12-20180216t034052882z
categoryjavascript
json_metadata{"tags":["javascript"],"app":"steemit/0.1"}
created2018-02-16 03:12:00
last_update2018-02-16 03:12:00
depth1
children0
last_payout2018-02-23 03:12:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation301,065,647,470
root_title"JavaScript Basics: Reflect.apply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,895,011
net_rshares0