Js determines whether a number is within an interval or whether it is equal to it.

var a = [0var 16, 24, 88, 99]; < var b = 77;
I want to look for b according to the value of b, b is in the subscript of a, or equal to that subscript!
b is 77, so its subscript corresponds to 60 is 3! If b is 88, then its subscript is the subscript of 88

Mar.22,2021

const findIndex = (val, arr) => (arr.findIndex((el) => el > val) - 1)
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b859-2c2b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b859-2c2b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?