diff --git a/frontend-masters-exercises/exercises/ex1/README.md b/frontend-masters-exercises/exercises/ex1/README.md new file mode 100755 index 0000000..1208cfc --- /dev/null +++ b/frontend-masters-exercises/exercises/ex1/README.md @@ -0,0 +1,9 @@ +# Instructions + +1. This exercise calls for you to write some async flow-control code. To start off with, you'll use callbacks only. + +2. Expected behavior: + - Request all 3 files at the same time (in "parallel"). + - Render them ASAP (don't just blindly wait for all to finish loading) + - BUT, render them in proper (obvious) order: "file1", "file2", "file3". + - After all 3 are done, output "Complete!". diff --git a/frontend-masters-exercises/exercises/ex1/ex1-fixed.html b/frontend-masters-exercises/exercises/ex1/ex1-fixed.html new file mode 100755 index 0000000..c71f974 --- /dev/null +++ b/frontend-masters-exercises/exercises/ex1/ex1-fixed.html @@ -0,0 +1,13 @@ + + +
+ +| t |