Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 670 Bytes

02-quiz-scoping.md

File metadata and controls

34 lines (27 loc) · 670 Bytes

03.02: QUIZ: SCOPING QUIZ

Given this registration code, which page URLs will this Service Worker control?

navigator.serviceWorker.register('/sw.js', {
  scope: '/foo/'
});
  • /
  • /sw.js
  • /foo
  • /foo.html
  • /foo/
  • /foo/bar/index.html
  • /foo/bar
ANSWER
  • /foo/
  • /foo/bar/index.html
  • /foo/bar

The `Service Worker` will control any page URL that begins with the scope. Remember, the trailing slash is important!


Next: Adding a Service Worker To the Project