Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

_.template Underscore Example

let compiled_template  = _.template("<b><%-student %> </b>")({student:"xxxx"});
const here= document.getElementById("here");
here.innerHTML = compiled_template;
 
PREVIOUS NEXT
Tagged: #Underscore #Example
ADD COMMENT
Topic
Name
5+5 =