function arrayLength(array = null) { if (!array) return 'Ошибка'; return array.length; }; console.log(arrayLength([2, 2]));