Split First name and Last name using javascript

后端 未结 20 3154
悲&欢浪女
悲&欢浪女 2020-12-08 06:39

I have a user with a name Paul Steve Panakkal. It\'s a long name it won\'t fit to the div container. So is there anyway to split first name and lastname fro

20条回答
  •  感情败类
    2020-12-08 06:58

    Yes:

    var fullName = "Paul Steve Panakkal".split(' '),
        firstName = fullName[0],
        lastName = fullName[fullName.length - 1];
    

    References:

    • string.split().

提交回复
热议问题