Skip to content

Instantly share code, notes, and snippets.

@onliniak
Created September 25, 2019 13:41
Show Gist options
  • Save onliniak/1c8b8dd0d9e12877c76f39df08532e02 to your computer and use it in GitHub Desktop.
Save onliniak/1c8b8dd0d9e12877c76f39df08532e02 to your computer and use it in GitHub Desktop.
Modern js → multi-lines, regex and optional semicolons.
//you should replace ä with any non-usable character.
test = `
ä
.
heloo
ä
`.replace(/(\s{4})/, "START")
.replace(".", "DISPLAY")
.replace(/(\s{2})/, "STOP")
.replace(/ä/g, "")
alert(test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment