Chalkboard - v3.0.1
    Preparing search index...

    Function compositeArr

    • Returns an array of composite numbers between the lower and upper bounds.

      Parameters

      • inf: number

        Lower bound

      • sup: number

        Upper bound

      Returns number[]

      // Returns the array [4, 6, 8, 9, ... , 996, 998, 999, 1000]
      const arr = Chalkboard.numb.compositeArr(0, 1000);