String.replace() ways of using

PHOTO EMBED

Sun Nov 03 2024 22:04:58 GMT+0000 (Coordinated Universal Time)

Saved by @Itra #replace #stringconversion #ignorecase

"Good night".replace("night", "day")
// "Good day"

// some with ignoreCase
"Good night".replace("night", "day", true)
// true mean ignoreCase=true
content_copyCOPY