为什么我的仅运行for循环的JS代码出现错误?

时间:2019-02-14 13:23:41

标签: javascript

我希望能够在y=0行中绘制椭圆。我在p5js中运行它。这是我的代码:

function setup() { // Sets up background
  createCanvas(windowWidth, windowHeight);
  background(100);
  clear();
}

function draw() {
  for (int x = 0 x < 1000, x++;) {
    ellipse(x, 0, 10, 10);
  }
}

1 个答案:

答案 0 :(得分:2)

您忘记了一些';'在你的

您就是这样:for(int x=0 x<1000, x++ ;){

您必须这样写:for (var x = 0; x < 1000; x++){

您可以使用文档获取更多信息:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Loops_and_iteration