Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Multiline strings in JavaScript
/**
* See: https://github.com/isaacs/node-tap/blob/master/bin/tap.js#L65
*/
console.log({/*
This is a multiline string.
That is, a single string, spread out over many lines,
without the need to escape quotes or end-of-line
characters.
I'm not sure about browser compatibility, but it works
in nodejs and Chrome.
*/}.toString().split(/\n/).slice(1, -1).join("\n"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment