0

Help me pull out the first letters to get CSS.

function acronym(CSS) { CSS.replace(/\s\w/g, el => el.toUpperCase() return el); } console.log(acronym(" cascading style sheets "))

15th May 2021, 12:00 PM
Š¢ŠøŠ¼ŃƒŃ€ Š—Š°Š²ŃŒŃŠ»Š¾Š²
Š¢ŠøŠ¼ŃƒŃ€ Š—Š°Š²ŃŒŃŠ»Š¾Š² - avatar
1 Answer
15th May 2021, 12:22 PM
Matias