now I
here is a quick overview of what can be done with templating
var example = 'My name is {name}. I love {passion}';
var obj = { name: 'Sean', passion: 'programming' };
var subbed = example.substitute(obj);
alert(subbed); //My name is Sean. I love programming';
read the full post
Aucun commentaire:
Enregistrer un commentaire