twyuer Baliyan
About
-
Profession
FABRICATOR ARTIFICIAL BREAST
Skills
In-Store
Posted Answers
Answer
If your calendar isn't shared with anyone, you might not see these settings.
Note: When you change the privacy settings for an existing event from "Private" to "Public" or the visibility settings from "Busy" to "Free" the change will apply to your calendar, but not to other event guests' calendars.
To change the privacy settings for an entire calendar, learn how to share or unshare your calendar.
Choose how your calendar is shared to learn more about what event settings are available.
Answer is posted for the following question.
Answer
1
// It is also called nested function is ecmascript
2
const multiply = (a) => (b) => a*b;
3
multiply(3)(4); //Answer is 12
4
const multipleBy5 = multiply(5);
5
multipleBy5(10); //Answer is 50
Source: Geeks For Geeks
Answer is posted for the following question.
How to currying javascript (Javascript Scripting Language)