Skip to content

Instantly share code, notes, and snippets.

@ffffranklin
Forked from anthonysimone/README.md
Created December 2, 2021 21:47
Show Gist options
  • Save ffffranklin/b12350eef4645678b5defc21d202951b to your computer and use it in GitHub Desktop.
Save ffffranklin/b12350eef4645678b5defc21d202951b to your computer and use it in GitHub Desktop.
How a Browser Works

How a Browser Works

   

   

Diagram

Github Question

   

   

   

   

   

   

   

   

   

CSS

.class1 {
    background-color: blue;
}
.
.
.
.
.class1 {
    background-color: red;
}

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

JavaScript

function fn1() { console.log(1); }
function fn2() { console.log(2); }
function fn3() { console.log(3); }

fn1();
setTimeout(fn2, 0);
fn3();

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

   

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment