Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
final
  • Loading branch information
mvw13001 committed Mar 1, 2017
1 parent 183b714 commit 0f7c3a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/main.js
@@ -1,11 +1,11 @@
function getRange(num1, num2){
if (+num1>+num2){
var number1= num2;
var number2= num1;
var number1= +num2;
var number2= +num1;
}
else{
var number1= num1;
var number2= num2;
var number1= +num1;
var number2= +num2;
}
for(var count=number1; count<=number2; count++){
console.log(count);
Expand Down

0 comments on commit 0f7c3a0

Please sign in to comment.