Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript function required arguments

const isRequired = () => { throw new Error('param is required'); };

const hello = (name = isRequired()) => { console.log(`hello ${name}`) };

// This will throw an error because no name is provided
hello();

// This will also throw an error
hello(undefined);

// These are good!
hello(null);
hello('David');
Source by davidwalsh.name #
 
PREVIOUS NEXT
Tagged: #javascript #function #required #arguments
ADD COMMENT
Topic
Name
5+7 =