young122849

Results 4 comments of young122849

`function itoa (num) { return (num % 10 === 0 ? "" : num % 10) + (num >= 10 ? itoa(parseInt(num / 10)) : ""); }`

function LazyMan (name) { let obj = Object.create(LazyMan.prototype); obj.name = name; obj.taskList = []; console.log(`Hi I am ${name}`); obj.next(); return obj; } LazyMan.prototype.eat = function (message) { this.taskList.push({ type: 'eat',...

来个奇淫技巧 ``` img { animation: test 0s forwards; } @keyframes test { from { width: 300px; } to { width: 300px; } } ```

来个奇淫技巧 ``` img { animation: test 0s forwards; } @keyframes test { from { width: 300px; } to { width: 300px; } } ``` > 来个奇淫技巧 > > ``` >...