📧 slava923@gmail.com | Lado923 |
lado923
I’m currently working in online education company as a team-leader. My goal is to change my work sector to IT. I realy want to do something more technical and to be a part of good work team. I’m learning everything that I need to get there. :)
My spare time I spend in training, reading and listening good music.
function deepCount(a){
var i = 0
var arr = [];
a.forEach(element => {
i = i + 1;
if(typeof(element) == 'object'){
arr = element;
countInnerArrays()
}
});
function countInnerArrays() {
arr.forEach(element => {
i = i + 1;
if(typeof(element) == 'object'){
arr = element;
countInnerArrays()
}
})
}
return i
}
I don’t have any work experience, so here is some mine learning projects:
Meditation app is a simple timer project made with html, css and javascript.
User can change timer duration and change video and sound in this app.
ToDo List app is a simple todo list project made with html, css and javascript.
User can add new tasks, mark them done and delete.
Virtual keybord is a learning project made with html, css and javascript.
It is module for virtual keyboard and can be used in some other project for desktop or mobile devices.