main.js 278 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
function estaOrdenado(array) {
    for (let i = 0; i < array.length - 1; i++)
        if (array[i] > array[i + 1])
            return "El arreglo no esta ordenado";

    return "El arreglo esta ordenado";
}
var vector = [1, 2, 3, 6, 7, 8, 15];
console.log(estaOrdenado(vector));