Skip to content

Instantly share code, notes, and snippets.

@sayanriju
Created July 17, 2019 10:30
Show Gist options
  • Save sayanriju/15614ff537b046734c320254ffdf4f45 to your computer and use it in GitHub Desktop.
Save sayanriju/15614ff537b046734c320254ffdf4f45 to your computer and use it in GitHub Desktop.
A simple function to split given Full Name into components First, Middle & Last
function splitName(full) {
const arr = full.split(" ").filter(c => c !== "")
const first = arr.shift()
const last = arr.pop()
const middle = arr.join(" ") || undefined
return { first, middle, last }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment