Skip to content

Instantly share code, notes, and snippets.

@calthoff
Last active March 7, 2017 04:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save calthoff/dad6d462bfe4458a12a0f6ad711525f5 to your computer and use it in GitHub Desktop.
Save calthoff/dad6d462bfe4458a12a0f6ad711525f5 to your computer and use it in GitHub Desktop.
function getMiddle(s){
var m = s.length / 2
if (s.length % 2 == 0){
return s.slice(m - 1, m + 1)
}
return s.slice(m, m + 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment