
Eugene
About me
ex-metalworking technologist, I’m learning web development. Interested in historical literature, cooking. Like to take a walk, street workout and jogging. Ex-volunteer of the "Last address" project & worked in the archives of the RF in searching of information for authors of historical books.
Contact
Skills
Code example
Your task is to write a function maskify, which changes all but the last four characters into '#'.
function maskify(cc) {
if (cc.length <= 4) {
return cc;
} else {
return ("#".repeat((cc.length-4))+cc.slice(-4, cc.length));
}
}
My works
Education
- - 2003-2005 BMSTU mechanical engineering technologies (not completed)
- - Web development for beginners: HTML & CSS
- - JavaScript for beginners