Zlata Romanova
VUE JS frontend developer
Russian Federation's Volga Region State University
Faculty of Economic
Direction of training: Applied Informatics in Economics
Education
Languages
https://www.codewars.com 5 kyu
Bogdan Stashchuk. Сomplete JS course for beginners
https://app.rs.school/profile Stage0, Stage1
WebCademi. What different between CSS Grid, Flexbox, Float. How to use.
Ulbi TV "VUE JS. Fundamental course from A to Z"
JavaScript.Ninja. Cryptonomicon"
RS-school. REACT course for beginners"
WebCademi. SASS SCSS compiling in VS Code. Plagine Live Sass Compiler"
Courses
Base Conversion
function fromAlphabetToDec( input, alphabet) {
let alphLength = alphabet.length;
let arr_input = input.split("").map(( el) => alphabet.indexOf(el));
return fromBaseToDec(arr_input, alphLength);
}