// 1: debounce
function debounce(func, duration) {
}
//
======================================================
// 2 convert , 10n7
7'10'2019'5613'
function convent(n) {
}
//
======================================================
/* 3
(template, data) => string,
:
template: "My name is ${ name }, I'm ${ age } years old."
data: { name: '', age: 20 }
:
"My name is , I'm 20 years old."
*/
function render(template, data) {
}
//
======================================================
评论0