html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
function main(){
var increase = parseInt(readLine(), 10);
var prices = [98, 99, 15.2, 20, 1026];
// your code goes here
function x(increase){
var a = [];
for(var i=0; i<=prices.length-1;i++){
a = increase + prices[i];
console.log(a + ",");
}
}
x(increase);
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run