Skip to content

Instantly share code, notes, and snippets.

@mjj2000
mjj2000 / heredoc.js
Created April 26, 2019 09:28
Heredoc for Javascript
// assign html string value with easy-to-ready format
const html = (function() {/* This line will be removed!!!!
<div>
hello world!!!
</div>
This line will be removed!!!! */}).toString().split('\n').slice(1,-1).join('\n');