Skip to content

Instantly share code, notes, and snippets.

@gsasouza
Created December 15, 2019 18:46
Show Gist options
  • Save gsasouza/caf3219c52435f31a19e548430c2901c to your computer and use it in GitHub Desktop.
Save gsasouza/caf3219c52435f31a19e548430c2901c to your computer and use it in GitHub Desktop.
const name = 'Gabriel Santos Souza';
const firstName = name.split(' ')[0];
const secondName = name.split(' ')[1];
console.log(firstName.length + secondName.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment