JS ... I’m trying to simplify this code, and I’m not having a good time | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

JS ... I’m trying to simplify this code, and I’m not having a good time

Please look at the code, it’s something I need to explain in the code. The point is, I’m trying to simplify the code so I don’t have to do the same thing over and over again when I’m trying to call a function(x, y, z){...} multiple times. https://code.sololearn.com/WfTCT1sO5U0S/?ref=app

1st Nov 2020, 9:49 PM
Ginfio
Ginfio - avatar
11 Answers
+ 5
Don't use eval. It's slow and unsafe. Just do: function simplify(id){ return myFunc(x["user"+id].name, x["user"+id].age); } // Sinplified call simplify(1) simplify(2)
1st Nov 2020, 10:39 PM
Kevin ★
+ 4
I fixed it for you: https://code.sololearn.com/WWeIzChqi4nJ/?ref=app using the eval() function The eval function is really useful because you can “run” strings if they contain JS code
1st Nov 2020, 10:08 PM
Galaxy-Coding (inactive)
Galaxy-Coding (inactive) - avatar
+ 4
Ginfio My code works. I saved it on CodePlayground: https://code.sololearn.com/Wzq1EEz4pJCp/?ref=app Notice that "blablabla" is a string while blablabla is a name (undefined)
3rd Nov 2020, 10:59 PM
Kevin ★
+ 4
Ginfio I see the problem. It requires only subtle changes. First, the simplify() function below: function simplify(userID){ return myFunc(x.userID.name, x.userId.age); } ... completely ignores the input arg named userID. Instead, it tries to access the global object named x, using a property "x.userID" which is not defined. This is different from "x.user1" and "x.user2", which are defined. The two args passed into myFunc() should be changed as follows: Change: {x.userID.name} to {userID.name} {x.userId.age} to {userID.age} NOTE: The "ID" in "userID" must match the casing in the parameter name. So... "userId" will be undefined. Corrected Version: ---- function simplify(userID){ return myFunc(userID.name, userID.age); } ---- Next, change the lines below from: simplify(user1) simplify(user2) to: simplify(x.user1) simplify(x.user2) Otherwise, user1 and user2 are undefined. x.user1 and x.user2 are defined in the object called x. 😉 https://code.sololearn.com/W69cR7rglctX/
4th Nov 2020, 4:03 AM
David Carroll
David Carroll - avatar
+ 3
Ginfio I'm still confused. Can you provide a sample input and expected output? This may be what you want: function simplify (userID) { return myFunc(x[userID].name, x[userID].age) } simplify("userone") simplify ("usertwo")
1st Nov 2020, 11:17 PM
Kevin ★
+ 3
What do you mean by slow and unsafe?
1st Nov 2020, 11:26 PM
Galaxy-Coding (inactive)
Galaxy-Coding (inactive) - avatar
+ 3
Kevin ★ Sample code: https://code.sololearn.com/W4AOq9gu244R/?ref=app I tried your code, and it didn't seem to work.
2nd Nov 2020, 12:39 AM
Ginfio
Ginfio - avatar
+ 2
ok i see now/:
1st Nov 2020, 10:13 PM
Ginfio
Ginfio - avatar
+ 1
Kevin ★ Use the search bar Forgot the number. that’s not really what i’m worried about. So it’s not confusing, let’s change the var to userone usertwo userthree.. how would we do it if it wasn’t like user1, user2... ??
1st Nov 2020, 10:45 PM
Ginfio
Ginfio - avatar
+ 1
My simplified answer 😛 Hope it is simplified https://code.sololearn.com/WwnkgqhbJBgA/?ref=app
3rd Nov 2020, 2:40 PM
Atoms~⚛
Atoms~⚛ - avatar