Not getting completed notice after entering code for project | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Not getting completed notice after entering code for project

I'm working on JavaScript, and the #44 Code Project "Store Manager" Even though my output matches what Sololearn expected, It is not giving me a completed message. Here's my code: function main() { var increase = parseInt(readLine(), 10); var prices = [98.99, 15.2, 20, 1026]; //your code goes here x=prices[0]+increase; y=prices[1]+increase; z=prices[2]+increase; t=prices[3]+increase; console.log("["+x+",",y+",",z+",",t+"]") }

28th Oct 2021, 6:18 AM
Stacey Prahl
Stacey Prahl - avatar
4 Answers
+ 4
Stacey Prahl , according to your code change it to => prices[0]+= increase; prices[1]+= increase; prices[2]+= increase; prices[3]+= increase; console.log(prices);
28th Oct 2021, 8:05 AM
TheWh¡teCat 🇧🇬
TheWh¡teCat 🇧🇬 - avatar
+ 3
Stacey Prahl , following the hints from TheWh¡teCat 🇧🇬 you will be able to solve this task. just let me give you a hint: the way this solution is done is like hard coded. it does only work with 4 elements in the list (imagine there is a list with 250 elements - this should nit be done in the current way). a more suitable way that will work with any number of elements in the list is to use a for loop. you can find samples in the tutorial. happy coding!
28th Oct 2021, 5:55 PM
Lothar
Lothar - avatar
+ 1
Stacey Prahl Another cool method is using functional programming: function main() { var increase = parseInt(readLine(), 10); var prices = [98.99, 15.2, 20, 1026]; //your code goes here prices=prices.map((p)=>p+increase); console.log(prices); }
1st Nov 2021, 1:14 PM
👑 ShadowCipher 🇦🇲
👑 ShadowCipher 🇦🇲 - avatar
0
thanks I'll try that
28th Oct 2021, 8:33 AM
Stacey Prahl
Stacey Prahl - avatar