/billing-application

This is a one-billing application, this website par pass to stoke user billing info with edit, delete, and individual user account info and manage jwt using a cookie with a proxy server the cookie

Primary LanguageJavaScript

Task 2 Problem solving

 const rotateLeft = (arr, rotateBy) => {
    for (let i = 0; i < rotateBy; i++) {
    arr.push(arr.shift());
    }
    return arr;
    };