Set A Default Parameter Value For A JavaScript Function - Stack Overflow
Set A Default Parameter Value For A JavaScript Function - Stack Overflow
Asked
13 years, 2 months ago Modified
1 month ago Viewed
1.4m times
I would like a JavaScript function to have optional arguments which I set a default on,
which get used if the value isn't defined (and ignored if the value is passed). In Ruby
2585 you can do it like this:
Share edited Jun 30, 2020 at 14:30 asked May 21, 2009 at 20:07
Improve this question Kamil Kiełczewski Tilendor
73.5k 26 334 303 47.2k 16 49 58
Follow
Sorted by:
Trending sort available
29 Answers
Highest score (default)
just works.
Join Stack Overflow to find the best answer to your technical question, help
Reference: Default Parameters - MDN Sign up
others answer theirs.
Default function parameters allow formal parameters to be initialized with
default values if no value or undefined is passed.
// the `= {}` below lets you call the function without any parameters
function myFor({ start = 5, end = 1, step = -1 } = {}) { // (A)
// Use the variables `start`, `end` and `step` here
···
}
// also OK
myFor();
myFor({});
Pre ES2015,
There are a lot of ways, but this is my preferred method — it lets you pass in anything
you want, including false or null. ( typeof null == "object" )
function foo(a, b) {
a = typeof a !== 'undefined' ? a : 42;
b = typeof b !== 'undefined' ? b : 'default_b';
...
}
226 You can also encapsulate it as such: function defaultFor(arg, val) { return typeof
arg !== 'undefined' ? arg : val; } and then you can call it as a = defaultFor(a,
42);
– Camilo Martin
Sep 2, 2012 at 5:56
7 @SiPlus and you got extra reference errors for free of charge while trying to use
undefined objects :p Even while it may work with some browsers and might be faster,
null is still an object and undefined is reference to primitive type that is trying to tell
that there is nothing here, not even null . See here, both cases in nutshell:
JavaScript/Reference/Global_Objects/undefined.
– Sampo Sarrala - codidact.org
Nov 3, 2012
Join Stack Overflow
at 1:29
to find the best answer to your technical question, help Sign up
others answer theirs.
10 if you check against the property of an object, then typeof is redundant. function
y g p p y j yp
foo(data) { var bar = data.bar !== undefined ? data.bar : 'default'; } This
won't throw reference errors and is concise.
– Dziamid
May 17, 2013 at 11:06
12 I know it's really minor, but I don't like how you are assigning a = a and b = b when
those parameters are not undefined. Also, that ternary operator with a bit complicated
condition may be hard to read for future maintainers. I would prefer following syntax: if
(typeof a == 'undefined') a = 42 - no unnecessary assignment plus a little bit easier
to read.
– Daddy32
Dec 9, 2014 at 15:31
13 Is there any reason to use typeof ? It would seem simpler to just do a === undefined .
Plus that way you'd get a reference error if you misspelled undefined vs. putting it in a
string.
– Abe Voelker
May 21, 2015 at 22:04
This approach does not work if you want to pass in a falsey value i.e. false , null ,
undefined , 0 or "" . If you require falsey values to be passed in you would need to
use the method in Tom Ritter's answer.
When dealing with a number of parameters to a function, it is often useful to allow the
consumer to pass the parameter arguments in an object and then merge these values
with an object that contains the default values for the function
function read_file(values) {
values = merge({
delete_after : "my default here"
}, values || {});
// rest of code
}
return target;
};
to use
Share Improve this answer edited Jan 9, 2018 at 10:30 answered May 21, 2009 at 20:09
Follow Vojtech Ruzicka Russ Cam
15.3k 15 63 63 122k 31 198 260
53 Because it doesn't work for falsey values, it may create a maintenance nightmare. A bit of
code that has always been passed truthy values before and suddenly fails because a falsey
one is passed in should probably be avoided where a more robust approach is available.
– jinglesthula
Oct 31, 2012 at 20:34
1 How come, in this case, delete_after doesn't get the boolean result of the expression
delete_after || "my default value" ?
– Ayush
Nov 28, 2012 at 5:56
3 or, you could just default to a falsey value - which is generally a good default anyway (eg.,
false for bools, empty string for strings, 0 for numbers, etc.) - in which case it doesn't really
matter what was passed in.
– Mark Brackett
Mar 27, 2016 at 1:33
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
I find something simple like this to be much more concise and readable personally.
function myFunc(x) {
x = pick(x, 'my default');
}
Share Improve this answer Follow answered May 21, 2009 at 20:18
TJ L
23.2k 7 58 76
2 I actually recommend this one, i use it and call it "por" which stands for "parameter or"
– user2039981
Apr 21, 2015 at 16:59
2 Don't say typeof arg == 'undefined', instead say arg === undefined
– OsamaBinLogin
Oct 20,
2015 at 15:06
3 @OsamaBinLogin what you say is correct for current JS - the older test persists because on
some browsers it used to be possible to overwrite undefined with some other value, causing
the test to fail.
– Alnitak
Nov 16, 2015 at 11:34
2 @Alnitak: It's still possible to override undefined . So, it's still a good idea to use typeof
and 'undefined' .
– Mr. Lance E Sloan
Jun 14, 2017 at 20:27
In ECMAScript 6 you will actually be able to write exactly what you have:
This will set delete_after to false if it s not present or undefined . You can use ES6
features like this one today with transpilers such as Babel.
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
See the MDN article for more information.
Share Improve this answer edited Jun 1, 2015 at 20:43 answered May 29, 2015 at 15:25
Follow Felix Kling
764k 170 1065
1114
2 @harryg: babeljs.io/repl/…
– Felix Kling
Jul 9, 2015 at 13:22
Edge14 and and current Chrome and Opera support it now, along with FF from last year... now
just waiting on Safari, which supports it in the current beta, so hopefully in ~4 months the latest
versions of all browsers will support it. Then you'll just have to wait for your users to actually
update their browsers (or push them to do so.)
– ArtOfWarfare
Jun 5, 2016 at 0:52
30 With ES6, you can do perhaps one of the most common idioms in JavaScript relates
to setting a default value for a function parameter. The way we’ve done this for years
should look quite familiar:
function foo(x,y) {
x = x || 11;
y = y || 31;
console.log( x + y );
}
foo(); // 42
foo( 5, 6 ); // 11
foo( 5 ); // 36
foo( null, 6 ); // 17
This pattern is most used, but is dangerous when we pass values like
foo(0, 42)
foo( 0, 42 ); // 53 <-- Oops, not 42
Why? Because the 0 is falsy , and so the x || 11 results in 11 , not the directly
Join Stack Overflow to find the best answer to your technical question, help
Sign verbosely
up
otherspassed
answer in 0. To fix this gotcha, some people will instead write the check more
theirs.
like this:
function foo(x,y) {
x = (x !== undefined) ? x : 11;
y = (y !== undefined) ? y : 31;
console.log( x + y );
}
foo( 0, 42 ); // 42
foo( undefined, 6 ); // 17
we can now examine a nice helpful syntax added as of ES6 to streamline the
assignment of default values to missing arguments:
foo(); // 42
foo( 5, 6 ); // 11
foo( 0, 42 ); // 42
foo( 5 ); // 36
foo( 5, undefined ); // 36 <-- `undefined` is missing
foo( 5, null ); // 5 <-- null coerces to `0`
foo( undefined, 6 ); // 17 <-- `undefined` is missing
foo( null, 6 ); // 6 <-- null coerces to `0`
Function default values can be more than just simple values like 31; they can be any
valid expression, even a function call :
function bar(val) {
console.log( "bar called!" );
return y + val;
}
function foo(x = y + 3, z = bar( x )) {
console.log( x, z );
}
var y = 5;
foo(); // "bar called"
// 8 13
foo( 10 ); // "bar called"
// 10 15
Join Stack
y =Overflow
6; to find the best answer to your technical question, help
Sign up
others answer theirs. , 10 ); // 9 10
foo( undefined
As you can see, the default value expressions are lazily evaluated, meaning they’re only
run if and when they’re needed — that is, when a parameter’s argument is omitted or is
undefined.
A default value expression can even be an inline function expression call — commonly
referred to as an Immediately Invoked Function Expression (IIFE) :
function foo( x =
(function(v){ return v + 11; })( 31 )
) {
console.log( x );
}
foo(); // 42
Share Improve this answer Follow answered Oct 15, 2016 at 17:58
Thalaivar
22.6k 5 59 68
Share Improve this answer Follow answered Nov 16, 2015 at 11:29
Takács Zsolt
268 4 14
4 What happens if delete_after is 0 or null ? It will not work correct for these cases.
– Dmitri Pavlutin
Dec 20, 2015 at 9:33
@StephanBijzitter it only would be true in some cases. But if you only want the default values to
unset values this didn't work, because 0 or null !=== false.
– Rutrus
Feb 1, 2017 at 10:13
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
I would highly recommend extreme caution when using default parameter values in
javascript. It often creates bugs when used in conjunction with higher order functions
12 like forEach , map , and reduce . For example, consider this line of code:
parseInt has an optional second parameter function parseInt(s, [ radix =10]) but
map calls parseInt with three arguments: (element, index, and array).
I suggest you separate your required parameters form your optional/default valued
arguments. If your function takes 1,2, or 3 required parameters for which no default
value makes sense, make them positional parameters to the function, any optional
parameters should follow as named attributes of a single object. If your function takes
4 or more, perhaps it makes more sense to supply all arguments via attributes of a
single object parameter.
In your case I would suggest you write your deleteFile function like this: (edited per
instead 's comments)...
// unsafe
function read_file(fileName, deleteAfter=false) {
if (deleteAfter) {
console.log(`Reading and then deleting ${fileName}`);
} else {
console.log(`Just reading ${fileName}`);
}
}
// better
function readFile(fileName, options) {
const deleteAfter = !!(options && options.deleteAfter === true);
read_file(fileName, deleteAfter);
}
console.log('unsafe...');
['log1.txt', 'log2.txt', 'log3.txt'].map(read_file);
console.log('better...');
['log1.txt', 'log2.txt', 'log3.txt'].map(readFile);
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
Running the above snippet illustrates the dangers lurking behind default argument
values for unused parameters.
Share Improve this answer edited Jan 28, 2019 at 1:59 answered Oct 15, 2017 at 22:36
Follow Doug Coburn
2,317 24 24
1 This "better solution" is quite unreadable. I would rather recommend to check variable type like
typeof deleteAfter === 'bool' and throw Exception otherwise. Plus in case of using
methods like map/foreach etc. just use them with caution and wrap called functions with
anonymous function. ['1', '2', '3'].map((value) => {read_file(value);})
– instead
Jan 26, 2019 at 17:36
That's a good point. I was trying to avoid using libraries in my code snippet, but this idiom is
quite messy in pure javascript. Personally, I would use lodash's get method to retrieve
deleteAfter. Throwing an exception if typeof 'deleteAfter' !== 'bool' may also be a
good prudent measure. I don't like designing methods that require the caller to "use caution".
Caution is the responsibility of the function, not the caller. The end behavior should follow the
principle of least surprise.
– Doug Coburn
Jan 26, 2019 at 18:18
I agree, that method shouldn't be wrote the way, that calling it, can broke its behavior. But keep
in mind that function is like model, and caller is like controller. Model should take care of data
processing. Function (method) should expect that data, can be passed wrong way and handle it.
That's why checking type of parameter plus throwing Exception, is the best way. Even though
it's more complex. But still it can save You from scratching Your head and keep asking... WHY IT
IS NOT WORKING?! and then... WHY IT IS WORKING?!
– instead
Jan 26, 2019 at 23:52
Share Improve this answer Follow answered Nov 16, 2015 at 7:34
Martin Wantke
3,913 30 21
f(1) === 50
As referenced by - http://es6-features.org/#DefaultParameterValues
being a long time C++ developer (Rookie to web development :)), when I first came
across this situation, I did the parameter assignment in the function definition, like it is
9 mentioned in the question, as follows.
function myfunc(a,b=10)
But beware that it doesn't work consistently across browsers. For me it worked on
chrome on my desktop, but did not work on chrome on android.
Safer option, as many
have mentioned above is -
function myfunc(a,b)
{
if (typeof(b)==='undefined') b = 10;
......
}
Intention for this answer is not to repeat the same solutions, what others have already
mentioned, but to inform that parameter assignment in the function definition may
work on some browsers, but don't rely on it.
Share Improve this answer Follow answered May 19, 2016 at 6:40
vivek
337 4 8
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others3answer theirs. within the function definition also doesn't work in IE 11, which is the most current
Assignment
version of IE for Windows 8 1 DiMono Jul 19 2016 at 2:52
version of IE for Windows 8.1.
– DiMono
Jul 19, 2016 at 2:52
1 In case anyone's wondering, function myfunc(a,b=10) is ES6 syntax, there are links to
compatibility tables in other answers.
– gcampbell
Sep 18, 2016 at 9:00
To anyone interested in having there code work in Microsoft Edge, do not use defaults
in function parameters.
8
function read_file(file, delete_after = false) {
#code
}
Share Improve this answer edited Sep 23, 2016 at 20:15 answered Aug 3, 2016 at 14:49
Follow Steven Johnston
1,639 12 16
If you are using ES6+ you can set default parameters in the following manner:
6
function test (foo = 1, bar = 2) {
console.log(foo, bar);
}
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answerRun code snippet
theirs. Expand snippet
If you need ES5 syntax you can do it in the following manner:
console.log(foo, bar);
}
In the above syntax the OR operator is used. The OR operator always returns the first
value if this can be converted to true if not it returns the righthandside value. When
the function is called with no corresponding argument the parameter variable ( bar in
our example) is set to undefined by the JS engine. undefined Is then converted to
false and thus does the OR operator return the value 0.
Share Improve this answer Follow answered Oct 15, 2017 at 20:40
Sachin Kumar
2,721 1 21 40
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
function helloWorld(name, symbol = '!!!') {
name = name || 'worlds';
5 console.log('hello ' + name + symbol);
}
5
function myFunction(someValue = "This is DEFAULT!") {
console.log("someValue --> ", someValue);
}
function myFunction(someValue) {
someValue = (someValue === undefined) ? "This is DEFAULT!" : someValue;
console.log("someValue --> ", someValue);
}
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
myFunction("Not A default value") // calling the function without default value
myFunction() // calling the function with default value
Both functions have exact same behavior as each of these example rely on the fact that
the parameter variable will be undefined if no parameter value was passed when
calling that function.
NOTE: as @BlackBeard says, function(param=value) WONT work with IE. Use the compatible
version.
– MagicLAMP
Nov 16, 2018 at 2:31
ES6: As already mentioned in most answers, in ES6, you can simply initialise a
parameter along with a value.
5
ES5: Most of the given answers aren't good enough for me because there are
occasions where I may have to pass falsey values such as 0 , null and undefined to a
function. To determine if a parameter is undefined because that's the value I passed
instead of undefined due to not have been defined at all I do this:
Share Improve this answer Follow answered Aug 12, 2018 at 5:26
Angel Politis
10.6k 13 46 63
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
4
function throwIfNoValue() {
throw new Error('Missing argument');
}
function foo(argValue = throwIfNoValue()) {
return argValue ;
}
Here foo() is a function which has a parameter named argValue. If we don’t pass
anything in the function call here, then the function throwIfNoValue() will be called and
the returned result will be assigned to the only argument argValue. This is how a
function call can be used as a default parameter. Which makes the code more
simplified and readable.
If for some reason you are not on ES6 and are using lodash here is a concise way to
default function parameters via _.defaultTo method:
3
var fn = function(a, b) {
a = _.defaultTo(a, 'Hi')
b = _.defaultTo(b, 'Mom!')
console.log(a, b)
}
fn() // Hi Mom!
fn(undefined, null) // Hi Mom!
fn(NaN, NaN) // Hi Mom!
fn(1) // 1 "Mom!"
fn(null, 2) // Hi 2
fn(false, false) // false false
fn(0, 2) // 0 2
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
<script
src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js">
</script>
Which will set the default if the current value is NaN, null, or undefined
Share Improve this answer edited Oct 10, 2018 at 7:10 answered Oct 10, 2018 at 7:04
Follow Akrion
17.2k 1 31 49
or
Which means if the value is there, use the value, otherwise, use the second value after
|| operation which does the same thing...
Note: also there is a big difference between those if you pass a value to ES6 one even
the value be falsy, that will be replaced with new value, something like null or "" ...
but ES5 one only will be replaced if only the passed value is truthy, that's because the
Join Stack Overflow to find the best answer to your technical question, help
Sign up
othersway working...
|| theirs.
answer
Share Improve this answer edited Jan 25, 2019 at 8:15 answered Jan 18, 2019 at 7:29
Follow Alireza
94.6k 25 262 165
Sounds of Future
In future, you will be able to "spread" one object to another (currently as of 2019 NOT
3
supported by Edge!) - demonstration how to use that for nice default options
regardless of order:
function test(options) {
var options = {
// defaults
url: 'defaultURL',
some: 'somethingDefault',
// override with input options
...options
};
...meanwhile what Edge DOES support is Object.assign() (IE does not, but I really hope
we can leave IE behind :) )
function test(options) {
Join Stack Overflow to find the best answer to your technical question, help
var options = Object.assign({ Sign up
others answer theirs. // defaults
url: 'defaultURL',
some: 'somethingDefault',
}, options); // override with input options
EDIT: Due to comments regarding const options - the problem with using constant
options in the rest of the function is actually not that you can't do that, is just that you
can't use the constant variable in its own declaration - you would have to adjust the
input naming to something like
function test(input_options){
const options = {
// defaults
someKey: 'someDefaultValue',
anotherKey: 'anotherDefaultValue',
Share Improve this answer edited Jun 20, 2020 at 9:12 answered Oct 17, 2019 at 20:22
Follow Community Bot jave.web
1 1 12.5k 10 82 110
The problem is that you normal never want to do that as this will re assign options which is
already defined but you can use it with a other var that would be legit.
– frank-dspeed
Dec 13,
2019 at 13:29
function test(options) { /* Options is defined it will throw a error if you use const options = {}
now*/ }
– frank-dspeed
Dec 13, 2019 at 14:19
Join Stack Overflow to find the best answer to your technical question, help
Sign up
no not global when you create a function and you pass in as argument name options then
others answer theirs.
inside the function options is defined inside function (opt) {} opt is defined you can't use const
opt inside that function then this is bad because you do variable reassignment if you do that
often and it looks like your general pattern this is a issue
– frank-dspeed
Dec 14, 2019 at 7:03
@google-frank-dspeed ah, do you mean that you can't do function(opt){ const opt =
/*some merging*/; } ? That for sure won't work because you would use const variable
before it was declared - you would have to adjust - function test(input_opt){ const
opt = { someKey: 'someDefaultValue', ...input_opt} }
– jave.web
Dec 16, 2019 at
12:45
@google-frank-dspeed anyway more new people will probably wonder about this, so I've
added the how-to code to edit :) so thanks for pointing that out for others :)
– jave.web
Dec 16,
2019 at 13:00
Just to showcase my skills too (lol), above function can written even without having
named arguments as below:
2
ES5 and above
function foo() {
a = typeof arguments[0] !== 'undefined' ? a : 42;
b = typeof arguments[1] !== 'undefined' ? b : 'default_b';
...
}
function foo(...rest) {
a = typeof rest[0] !== 'undefined' ? a : 42;
b = typeof rest[1] !== 'undefined' ? b : 'default_b';
...
}
Share Improve this answer Follow answered Dec 19, 2019 at 8:39
Shivang Gupta
2,941 1 22 24
Yes - proof:
2 Show code snippet
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
Share Improve this answer Follow answered Jun 30, 2020 at 14:30
Kamil Kiełczewski
73.5k 26 334 303
Syntax:
Description:
In the past, the general strategy for setting defaults was to test parameter values in the
body of the function and assign a value if they are undefined. If no value is provided in
the call, its value would be undefined. You would have to set a conditional check to
make sure the parameter is not undefined
With default parameters in ES2015, the check in the function body is no longer
necessary. Now you can simply put a default value in the function head.
// OLD METHOD
function multiply(a, b) {
b = (typeof b !== 'undefined') ? b : 1;
return a * b;
}
multiply(5, 2); // 10
multiply(5, 1); // 5
multiply(5); // 5
// NEW METHOD
function multiply(a, b = 1) {
Join Stackreturn
Overflow
a * to
b;find the best answer to your technical question, help Sign up
others answer
} theirs.
multiply(5, 2); // 10
multiply(5, 1); // 5
multiply(5); // 5
Even if the value is set explicitly when calling, the value of the num argument is the
default one.
function test(num = 1) {
console.log(typeof num);
}
The default argument gets evaluated at call time, so unlike some other languages, a
new object is created each time the function is called.
append(1); //[1]
append(2); //[2], not [1, 2]
function something() {
return 'sth';
}
callSomething(); //sth
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
Default parameters are available to later default parameters:
function f(x = 1, y) {
return [x, y];
}
You can use default value assignment with the destructuring assignment notation
f(); // 6
Share Improve this answer Follow answered Sep 27, 2018 at 16:56
esewalson
210 2 2
I've noticed a few answers mentioning that using default params isn't portable to other
browsers, but it's only fair to point out that you can use transpilers like Babel to convert
1 your code into ES5 syntax for browsers that have limited support for modern JS
features.
So this:
would be transpiled as this (try it out in the Babel REPL -> https://babeljs.io/repl/):
"use strict";
function read_file(file) {
var delete_after =
arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
//Code...
Of course, if you have no intention of using transpilation, then setting default params in
the body of the function like others have demonstrated is perfectly fine as well.
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
Share Improve this answer Follow answered May 3, 2021 at 18:30
maxxioso
56 2
Following code may work in this situation including ECMAScript 6 (ES6) as well as
earlier versions.
console.log('delete_after =',delete_after);
}
read_file('text1.txt',true);
read_file('text2.txt');
as default value in languages works when the function's parameter value is skipped
when calling, in JavaScript it is assigned to undefined. This approach doesn't look
attractive programmatically but have backward compatibility.
Share Improve this answer Follow answered Sep 24, 2018 at 23:02
Muhammad Rizwan
348 2 12
Use === undefined . == is broken ( null == undefined is true, for example). This doesn't
add much to existing answers, and JS does support default arguments in recent years, so I'd just
recommend that as the best equivalent of the Python code and use a transpiler for backward
compatibility. Also, there's a difference between calling the function explicitly with undefined
and not passing an argument, so I would check the length of the arguments as well if you want
true congruence.
– ggorlen
Jun 17 at 20:41
Join Stack Overflow to find the best answer to your technical question, help
Just a different approach to set default params is to use object map of arguments,
Sign up
others answer theirs.
0 instead of arguments directly.
For example,
const defaultConfig = {
category: 'Animals',
legs: 4
};
function checkOrganism(props) {
const category = props.category || defaultConfig.category;
const legs = props.legs || defaultConfig.legs;
}
This way, it's easy to extend the arguments and not worry about argument length
mismatch.
Share Improve this answer Follow answered Jun 13, 2019 at 9:26
Aman Pandey
306 1 3 12
}
}
Share Improve this answer Follow answered Jul 26, 2021 at 12:12
Engr.Aftab Ufaq
1,142 1 9 30
The answer is yes. In fact, there are many languages who support default parameters.
Join Stack Overflow
Python to them:
is one of find the best answer to your technical question, help
Sign up
-1
others answer theirs.
def(a, enter="Hello"):
print(a+enter)
Even though this is Python 3 code due to the parentheses, default parameters in
functions also work in JS.
read_file("test.txt");
You can just define the variable right after the start of the function, like this:
function read_file(file){
var deleteAfter = false;
console.log(deleteAfter);
}
read_file("test.txt");
In both of my examples, it returns the same thing. But sometimes they actually could
be useful, like in very advanced projects.
So, in conclusion, default parameter values can be used in JS. But it is almost the same
thing as defining a variable right after the start of the function. However, sometimes
they are still very useful. As you have may noticed, default parameter values take 1 less
line of code than the standard way which is defining the parameter right after the start
of the function.
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.
EDIT: And this is super important! This will not work in IE. See documentation. So with
IE you have to use the "define variable at top of function" method. Default parameters
won't work in IE.
Share Improve this answer edited Apr 9, 2020 at 20:44 answered Jul 16, 2019 at 16:26
Follow new QOpenGLWidget
1,878 2 16 28
The Python code here isn't valid and the JS code doesn't make much sense. The one with the
variable in the function is different than the default value one, because the caller can't actually
override the false value. So I'm not sure how any of this is relevant.
– ggorlen
Jun 17 at 20:40
-3 function func(a=10,b=20)
{
alert (a+' and '+b);
}
Share Improve this answer Follow answered Jul 19, 2016 at 11:59
Muhammad Awais
3,867 1 37 36
Highly active question. Earn 10 reputation (not counting the association bonus) in order to answer
this question. The reputation requirement helps protect this question from spam and non-answer
activity.
Join Stack Overflow to find the best answer to your technical question, help
Sign up
others answer theirs.