Skills and experience
Skills
- HTML & CSS
- Basic JavaScript
- Basic Pyton
- GIT
Sample code
/**
*Create a string of "bu" with different separator
*@param {number} n number of "bu"
*@param {string} separator any separator
*@param {string} workpiece another word instead of "bu"
*@returns {string} string of "bu" or something
*/
function bububu(n, separator="", workpiece="bu") {
result = "";
for (let i = 1; i <= n; i++) {
result += workpiece;
if (i < n) result += separator;
}
return result
}
Education
- Web development for beginners: HTML and CSS from Stepic
- Programming in Python from Stepic