Mac Essential Shortcuts

Mac Essential Shortcuts

Windows Nav / Manage

1. See All Current App Windows
get text right below here and video floating to right

    Opens All the Windows for the Current Application opened

    'control' + ↓ 'down arrow'
    MAybe but shorcut in code-cmd and name that class='s hortcut'

    You can also press control then tab to change apps while seeing all windows

    'control' + ⇥ 'tab'
  • Mac Essential Shortcuts

  • Restore OS (operating system)

    1

    FIND CODE IN CONVO

    CamelCase function

        function toCamelCase(str) {
            return str
            .toLowerCase()
            .replace(/[^a-zA-Z0-9]+(.)/g, (match, chr) => chr.toUpperCase());
        }