We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Modify the string "cat" to "bat"
"cat".replace("c", "b") OR "b" + "cat"[1:]
"cat".replace("c", "b")
"b" + "cat"[1:]