Skip to content

Instantly share code, notes, and snippets.

View selakkkkk's full-sized avatar
🎯
Focusing

Dragoje Selakovic selakkkkk

🎯
Focusing
View GitHub Profile
@SK-CSE
SK-CSE / acronym.js
Created January 28, 2017 09:48
acronym function in javascript
function firstLetter(word) {
return word[0];
};
function getAcronym(str){
var words = str.split(" "); // ["for","your","information"]
var acr = words.map(firstLetter); // ["f","y","i"]
return acr.join("").toUpperCase();
};