// @desc 세 글자만 고치고 블로그에 방문해주세요
(function 뭐시기뭐시기(now){
const hiring = ['d','e','v','.','b','a','-','t','o','n','.','k','r'];
const front = now.length + hiring.length;
for(var i = 0; i < hiring.length; i++){
setTimeout(function(){
now += hiring[i];
if(front === now.length){
location.href = now;
}
},1000)
}
})('https://')