javascript [Find Place]用于根据值#vanilla #script检索给定数字在数组中的位置的索引的脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript [Find Place]用于根据值#vanilla #script检索给定数字在数组中的位置的索引的脚本相关的知识,希望对你有一定的参考价值。

function getIndexToIns(arr, num) {
  // Find my place in this sorted array.
  var times = arr.length; // runs the for loop once for each thing in the array
  var count = 0; 
  for (i=0;i<times;i++){
    if(num>arr[i]){count++;} } // counts how many array numbers are smaller than num
    return count; // the above equals num's position in a sorted array
}

//getIndexToIns([40, 60], 50);

以上是关于javascript [Find Place]用于根据值#vanilla #script检索给定数字在数组中的位置的索引的脚本的主要内容,如果未能解决你的问题,请参考以下文章

用于停车位的 Google Place API

Mongodb查找比较数组元素

html #Google Maps JavaScript API -Place Autocomplete Hotel Search //来源http://jsbin.com/goqay/1 -http

如何使用Ansible过滤树中每个文件的最新版本?

javascript 把百分数变成普通数字

javascript与php模板引擎实现原理