학력
- 한신 어린이집 기린반
- 신이로 유치원 탄뽀뽀반 (일본)
- 시안 초중학교 1학년 수료 (중국)
경력
- 前 자택경비원 (택배수령팀)
- 前 마을방법대 (공원순찰팀)
관심 분야
- 인프런 30% 할인 기간
- 전업 주부 이직
- 외국어 (영어, 독일어, 중국어, 일본어)
소개
// deno run --allow-read my_journey.ts
const delay = (ms: number) => new Promise((res) => setTimeout(res, ms));
async function evolve(from: string, to: string) {
console.log(`✨ ${from} ➡️ ${to}`);
await delay(10000);
return to;
}
const journey = ["Web Developer", "Infra Engineer", "Game Client Developer"];
let current = "🧑💻";
for (const next of journey) {
current = await evolve(current, next);
}
console.log(`🎯 ${current} 게임을 현실로 바꾸는 중...`);




