Error Javascript function [closed]

0

Can anyone tell me what I'm missing from this js function?

        alert("Insira o numero a ser pesquisado");
        var num = prompt("Insira um numero: ");

        var array = [2,23,4,56,7];

        function pesquisa(array[], num){
            var achou = false;

            for(var i=0; i < array.length-1;i++){
                if(array[i] == num)
                {
                    achou = true;
                }
            }
             return achou;
        }

        if(pesquisa(array,num) == true)
        {
            alert("o elemento procurado está dentro do array");
        }
        else
        {
            alert("O elemento não está no array");
        }
    
asked by anonymous 09.09.2014 / 17:32

1 answer

1

on line:

function pesquisa(array[], num){

change to:

function pesquisa(array, num) {

and everything will work as expected

    
09.09.2014 / 18:15