JSFiddle - React, Tailwind, and code Playground

by Igor Cuckovic

JavaScript

function toUpperCase (string) {
	return string.split(" ")
  .map(function(d) {
  	var first = d.slice(0,1);
    var rest = d.slice(1);
    //console.log(first,rest)
    
    return first.toUpperCase() + rest;
  }).join(" ");
}

console.log(toUpperCase("ddd barf baba asdf"))