+ 1
Write a program to input the full name ,and print the initials.
Suppose, Input: sanjay kumar sharma Output : s.k.s or S.K.S
4 Answers
+ 1
String.prototype.initials = function() {
return this.split(' ').map(w=>w[0]).join('.')
}
https://code.sololearn.com/WGVZ7NnvLBpc/?ref=app
0
I'm too lazy to complete challenges in OOP style for today.
https://code.sololearn.com/wSeLrkRSM1pY/?ref=app
0
https://code.sololearn.com/cGE9vNV82tRx/?ref=app