Skip to content

Instantly share code, notes, and snippets.

View y0n4's full-sized avatar

Yona N y0n4

View GitHub Profile
@y0n4
y0n4 / gist:3b4b41bbb031237e0753f6aa9e95baea
Created April 12, 2018 21:08
58 length of last word (yona)
//prompt >> count the length of last word
//the input >> string, output >> number
//if no last word, there should just be a 0
var lengthOfLastWord = function(s) {
//if argument is not being passed as a string
if (typeof s !== 'string') {
return 0;
}