• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3// Set root member
4let foo = true;
5foo = false;
6
7// Return outside of function
8if (!foo) {
9  return;
10}
11