Company logo
  • Empleos
  • Bootcamp
  • Acerca de nosotros
  • Para profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
    • Bootcamp
  • Para empresas
    • Inicio
    • Nuestro proceso
    • Planes
    • Pruebas
    • Nómina
    • Blog
    • Comercial
    • Calculadora

0

56
Vistas
Why is this function call returning undefined as well

I have written a simple JavaScript code to print the max number of an array and get undefined printed as well.

let arrNums = [1,2,5,19,20];
const maxNum = function(arr) {
if (arr.length != 0) {
    console.log(Math.max(...arr));
}
else{
    console.log("Empty");  
}}

console.log(maxNum(arrNums));
7 months ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Your function doesn't return anything. Return the Math.max() and the 'Empty' for it to work. After that you can just use console.log(maxNum(arrNums)); outside the function. See below for an example of this:

const arrNums = [1, 2, 5, 19, 20];
const maxNum = function (arr) {
    if (arr.length != 0) {
        return Math.max(...arr);
    } else {
        return 'Empty';
    }
}

console.log(maxNum(arrNums));

Hoped this helped!

7 months ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos