Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 504 Bytes

Ucfirst.md

File metadata and controls

28 lines (19 loc) · 504 Bytes

Ucfirst

Example#1

import JStr from "@akcybex/jstr";

const str = JStr.of("hello world").ucfirst().toString();
console.log(str); // Outputs: 'Hello world'

Example#2

import JStr from "@akcybex/jstr";

const str = JStr.of("hELLO world").ucfirst().toString();
console.log(str); // Outputs: 'HELLO world'

Example#3

import JStr from "@akcybex/jstr";

const str = JStr.ucfirst("hELLO world");
console.log(str); // Outputs: 'HELLO world'