showing results for - "node js code for saving first middle and last name"
Serena
11 Jan 2021
1var studentFullName="John Smith";
2var details=[]
3var details=studentFullName.split(' ');
4console.log("StudentFirstName="+details[0])
5console.log("StudentLastName="+details[1]);