如何制作一个所有值都低于输入值的斐波那契数列?

How to make a Fibonacci sequence with all the values ​below the input?

我正在尝试制作一个斐波那契数列,其中所有值都在N 以下,其中N是输入参数。所以我尝试这样做但是出现了这样的错误

TypeError: n1.slice is not a functionTypeError: n1.slice is not a function

这是到目前为止我得到的:

function fib(N){
    let n1 = 1, n2 = 1, nextTerm;
    for (let i= 1; i < N; i++) {
            console.log(n1.slice(-1).pop())
            nextTerm = n1 + n2;
            n1 = n2;
            n2 = nextTerm;
        }
  }
fib(7)

我对 N = 7 的期望

1,1,2,3,5

当 N = 13

1,1,2,3,5,8

希望你能帮我解决这个问题

你需要把nextTerm放在for循环的条件中,而不是i

function fib(N) {
    let n1 = 1,
        n2 = 1,
        nextTerm = 0;
    console.log(n1)
    for (let i = 1; nextTerm < N; i++) {
        console.log(n2)
        nextTerm = n1 + n2;
        n1 = n2;
        n2 = nextTerm;
    }
}
fib(7);