Skip to content

Commit 1ad7cba

Browse files
authored
Q35 rephrase
1 parent 5eb363a commit 1ad7cba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

challenges/functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
32. [Write a function to copy functions of an object to another object (mixin)](#Q32)
3939
33. [Create a single function which can perform sum(a, b, c), sum(a, b)(c), sum(a)(b, c) and sum(a)(b)(c) and returns sum of a, b and c](#Q33)
4040
34. [Design a function which can keep recieving the arguments on each function call and returns the sum when no argument is passed](#Q34)
41-
35. [Show the way of using Proxy for function](#Q35)
41+
35. [Show the usage Proxy for function](#Q35)
4242
36. [Create an interface for a function such that whenever a function is triggered the system should log the time. Do not modify the function code](#Q36)
4343
37. [Create an interface exposing subscribe and publish functionality, which allows publishing data which in turn invokes all the subscribers with the data](#Q37)
4444

@@ -1202,7 +1202,7 @@ In the code value is checked if it is undefined reason being 0 is a falsy value
12021202
<br />
12031203
12041204
#### Q35
1205-
### Show the way of using Proxy for function
1205+
### Show the usage Proxy for function
12061206
12071207
- The Proxy object enables create a proxy for a function, which can intercept the function calls
12081208
- Proxy takes 1st argument as an function and 2nd argument as a object with different function traps

0 commit comments

Comments
 (0)