Welcome to the Yatu Tech Blog
Here I publish notes and deep-dive articles on AI, programming practice and dev tools, available in both Chinese and English.
A code sample
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('Yatu'));