Lodash Playground Online Template

Code, Debug, Demo, Example and Learn Easy & Fast with Lodash Playground Online

import _ from 'lodash';
    
const message = _.capitalize('hello world');

document.querySelector("#root").innerHTML = message;

console.log(message);
<div id="root"></div>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html,
body {
  font-family: 'Roboto', cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 30px;
}