[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/devcer/javascript-algorithms/main/codeSnippets.js [Back]  [Original]

function stopAtThree(arr) {
  arr.forEach((num) => {
    if (num === 3) {
      return;
    }
    console.log(num);
  });
}

stopAtThree([0, 1, 2, 3, 4, 5]);

Web Proxy Viewer  |  New URL  |  Original Page