+ 3
Can someone help me out with this?
Write a javascript program that asks the user to enter his or her first name and then last name, and then constructs, stores, and displays a third string consisting of the userâs last name followed by a comma, a space, and first name. Use string objects and methods from the string header file. A sample run could look like this: Enter your first name: Paul Enter your last name: Smith Hereâs the information in a single string: Smith, Paul
5 Answers
+ 3
Waseem-Ahmad Ebrahim đ
var names = [prompt(), prompt()]
var len = names.length;
var arr = new Array();
for (let i=0; i<len; i++) {
arr.push(' '+names[i]);
arr.reverse(names[i]);
}
console.log(arr);
https://code.sololearn.com/WS4HaHM74psO/?ref=app
+ 1
Thanks man, that helps a lot.
0
Give me your attempt, I would help you from there.
0
I wasn't sure if mine was correct
0
:)