Email: nikolay.chukaev@outlook.com GitHub: nikolay-chukaev Discord: nikolay.chukaev_63937
Hi! My name is Nikolay. I’m just starting my jorney in IT and aiming to become a front-end developer. I don’t have any professional experience in this yet, but i have what really matters - a strong desire to learn and grow. I’m a hardworking and curious person, always ready to put in the effort to achieve results. I’m planning to dedicate the upcoming year to gaining the necessary skills and finding my place in the world of web development. I belive that persistence and motivation will help me overcome any challenges along the way.
function booleanToString(b){
return b.toString();
}
const character = "#";
const count = 8;
const rows = [];
function padRow(rowNumber, rowCount) {
return " ".repeat(rowCount - rowNumber) + character.repeat(2 * rowNumber - 1) + " ".repeat(rowCount - rowNumber);
}
let i = 1;
while (i <= count) {
rows.push(padRow(i, count));
i++;
}
let result = "";
for (const row of rows) {
result += row + "\n";
}
console.log(result);
Bachelor’s degree in Human Resource Management S.Y. Witte Moscow University, 2013–2017
Level: B1