Answers for "node js code for saving first middle and last name"

0

node js code for saving first middle and last name

var studentFullName="John Smith";
var details=[]
var details=studentFullName.split(' ');
console.log("StudentFirstName="+details[0])
console.log("StudentLastName="+details[1]);
Posted by: Guest on November-25-2020

Code answers related to "node js code for saving first middle and last name"

Code answers related to "Javascript"

Browse Popular Code Answers by Language