Skip to content

Instantly share code, notes, and snippets.

Created February 4, 2017 21:34
Show Gist options
  • Save anonymous/37d654832f9e46900f6555982239f90f to your computer and use it in GitHub Desktop.
Save anonymous/37d654832f9e46900f6555982239f90f to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/hutobem
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
function raiz (number){
while (number <= 12){
console.log(number);
number = number+2;
}
}
raiz(3);
</script>
<script id="jsbin-source-javascript" type="text/javascript">function raiz (number){
while (number <= 12){
console.log(number);
number = number+2;
}
}
raiz(3);
</script></body>
</html>
function raiz (number){
while (number <= 12){
console.log(number);
number = number+2;
}
}
raiz(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment