Skip to content

Instantly share code, notes, and snippets.

@pebosi
Last active August 20, 2021 07:14
Show Gist options
  • Save pebosi/373b524350517aa56baf to your computer and use it in GitHub Desktop.
Save pebosi/373b524350517aa56baf to your computer and use it in GitHub Desktop.
Collatz in JavaScript
var x = 100, z = 0;
while (x != 1) {
if (x % 2 == 0) {
x = x / 2;
}
else {
x = x * 3 + 1;
}
z++;
}
alert(z); // 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment