You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@isidorn It's our smoke test express repository and modified the file index.js. Here is the code
varexpress=require('express');varrouter=express.Router();functionc(){return{a: 1}}/* GET home page. */router.get('/',function(req,res,next){vara=1234;if(a===1234){a=3;varb=2345;vara=4;}else{varb=5678;}a=c().a;a=5678;console.log(c);res.render('index',{title: 'Express'});});module.exports=router;
Testing #18670
Using Node
See the inline values for variable
a
under functionc
scope and in current scope.The text was updated successfully, but these errors were encountered: