()
| 2 | console.log("Default value of your boolean is " + testBoolean); |
| 3 | |
| 4 | function toggleValue() { |
| 5 | if (testBoolean) { |
| 6 | testBoolean = false; |
| 7 | |
| 8 | console.log("The value of your boolean is " + testBoolean); |
| 9 | } else { |
| 10 | testBoolean = true; |
| 11 | |
| 12 | console.log("The value of your boolean is " + testBoolean); |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected