remove obsolete requirement from docs for the has() function

This commit is contained in:
Alexey Zatelepin 2017-11-09 16:39:57 +03:00
parent 235f7cd8ec
commit 0919ae6338
2 changed files with 0 additions and 2 deletions

View File

@ -63,7 +63,6 @@ has(arr, elem)
~~~~~~~~~~~~~~
Checks whether the 'arr' array has the 'elem' element.
Returns 0 if the the element is not in the array, or 1 if it is.
'elem' must be a constant.
indexOf(arr, x)
~~~~~~~~~~~~~~~

View File

@ -50,7 +50,6 @@ n должен быть любым целочисленным типом.
### has(arr, elem)
Проверяет наличие элемента elem в массиве arr.
Возвращает 0, если элемента в массиве нет, или 1, если есть.
elem должен быть константой.
### indexOf(arr, x)
Возвращает индекс элемента x (начиная с 1), если он есть в массиве, или 0, если его нет.