Can you explain fun clearly | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can you explain fun clearly

27th Jul 2017, 4:56 PM
Rahul Hamilpure
Rahul Hamilpure - avatar
6 Answers
+ 9
Fun? Spongebob:  F is for Friends who do stuff together. U is for You and me. N is for Anywhere and anytime at all. Sea Creatures:  Down here in the deep blue sea! Plankton:  F is for Fire that burns down the whole town. U is for URANIUM...BOMBS! N is for No survivors when you're- Spongebob: Plankton! Those things aren't what fun is all about! Now, do it like this, F is for Friends who do stuff to- Plankton:  Never! That's completely idiotic! Spongebob:  Here, Let me help you... F is for friends who do stuff together. U is for You and me, TRY IT! Plankton:  N is for Anywhere and anytime at all. Sea Creatures:  Down here in the deep blue sea!
27th Jul 2017, 5:05 PM
The Coding Sloth
The Coding Sloth - avatar
+ 6
Parameters are things you want to know in your function, for examle if you have the following function print(message) { alert(message) } message is the parameter in this example, you want to know a value for it so that you can use it in your function. If you now invoke or call the function, you can give it one argument. print("hello") The argument is "hello" and the function print has the parameter message so in that function the variable message will contain "hello" as its value.
28th Jul 2017, 12:43 PM
The Coding Sloth
The Coding Sloth - avatar
+ 4
Or functions? function funcName(parameters) for example: function myFunc(str) { alert(str) <--------| } if you call the function like this: myFunc("hi") The output will be an alert saying "hi"
27th Jul 2017, 5:09 PM
The Coding Sloth
The Coding Sloth - avatar
+ 1
WHAT IS MEAN PARAMETERS ?
28th Jul 2017, 12:37 PM
Rahul Hamilpure
Rahul Hamilpure - avatar
+ 1
SHOT CODE FUNCTIONS ?
28th Jul 2017, 12:38 PM
Rahul Hamilpure
Rahul Hamilpure - avatar
0
WHAT IS PROTO TYPES CAN ANY EXPLAIN IT PLEASE ?
28th Jul 2017, 12:41 PM
Rahul Hamilpure
Rahul Hamilpure - avatar