<html>
<head>
<title>Primes!</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
#bohday {
font-family: 'Open Sans', 'sans-serif';
background: skyBlue;
color: white;
}
</style>
</head>
<body id="bohday">
<h1>
Sieve of Eratosthenes :)
</h1>
<h4>A quick and simple algorithm for finding all primes under a number.</b> </h4>
<input id="input" placeholder="Type integer here" onkeydown="validInteger()"/>
<br>
Primes output: <p id = "junk"></p>
</body>
</html>
// Mei Weng Brough-Smyth
// beepboop.com.au
var limit;
// Take input and ensure it is an integer.
function validInteger(){
document.getElementById("junk").innerHTML = "";
var input = document.getElementById('input').value;
limit = input.match(/^\d+$/);
limit++; // Add 1 to compensate for place 0
doSieve(limit);
}
// Take limit and output using sieve of eratosthenes
function doSieve(limit) {
// Create array with limit amount of elements
var sieve= new Array(limit);
// set 1 and 2 to false
sieve[0] = false;
sieve[1] = false;
// Set elements that divide equally by 2 to false and the rest to true
for (var i=2; i<limit; i++) {
i%2===0 ? sieve[i] = false : sieve[i] = true;
}
// Get square root of limit
var squareLimit = Math.sqrt(limit);
// Get all primes from 2 to the square limit
for (i=2; i<squareLimit; i++) {
if (sieve[i]) {
// Get all multiples of these primes and set them to false
for (var j=i*2; j<=limit; j+=i) {
sieve[j] = false;
}
}
}
// Print out prime result
for (i=1; i<limit; i++) {
if (sieve[i]) {
document.getElementById("junk").innerHTML += i + ", ";
}
}
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |