console.log(array_range(1, 4))
console.log(array_range(-6, 4))
function array_range(Start,Till)
{
var temp = []
for(var i = Start ; i <= Till ; i++)
{
temp.push(i);
if(temp.length == 4)
{
break;
}
}
return temp;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: