Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 315 Bytes

Upper.md

File metadata and controls

19 lines (13 loc) · 315 Bytes

Upper

Example#1

import JStr from "@akcybex/jstr";

const str = JStr.of("hello").upper().toString();
console.log(str); // Outputs: 'HELLO'

Example#2

import JStr from "@akcybex/jstr";

const str = JStr.upper("hello").toString();
console.log(str); // Outputs: 'HELLO'