Skip to content

Instantly share code, notes, and snippets.

@dimpu
Created October 29, 2015 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimpu/8ba2759d589e8518900e to your computer and use it in GitHub Desktop.
Save dimpu/8ba2759d589e8518900e to your computer and use it in GitHub Desktop.
//es5
var html = '<div class="form-group">'+
'<label class="sr-only" for="">label</label>'+
'<input type="email" class="form-control" id="" placeholder="Input field">'+
'</div>';
console.log(html);
//es6
'use strict';
let html = `<div class="form-group">
<label class="sr-only" for="">label</label>
<input type="email" class="form-control" id="" placeholder="Input field">
</div>`;
console.log(html);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment