w3resource

JavaScript: Get the first non-null / undefined argument

JavaScript fundamental (ES6 Syntax): Exercise-64 with Solution

Write a JavaScript program to get the first non-null / undefined argument.

  • Use Array.prototype.find() and Array.prototype.includes() to find the first value that is not equal to undefined or null.

Sample Solution:

JavaScript Code:

//#Source https://bit.ly/2neWfJ2
// Define a function 'coalesce' to return the first non-null and non-undefined value from the provided arguments.
const coalesce = (...args) => args.find(_ => ![undefined, null].includes(_));

// Test the 'coalesce' function with various arguments including null, undefined, empty string, NaN, and a string.
console.log(coalesce(null, undefined, '', NaN, 'abcd')); // Output the first non-null and non-undefined value.

Flowchart:

flowchart: Get the first non-null / undefined argument

Live Demo:

See the Pen javascript-basic-exercise-64-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to clone a given regular expression.
Next: Write a JavaScript program to add special characters to text to print in color in the console (combined with console.log()).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.