Vladislava ČAĐENOVIĆ

profile picture

I'm currently working in online education company as a team-leader. 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. :)

Code example


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
}
        

Experience

I don't have any work experience, so here is some mine learning projects:

Meditation app

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.

meditation_app

ToDo List 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.

ToDo List

Virtual keyboard

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.

virtual_keyboard_app