In C++ and C# applications one can define conditional compilation symbols, such as DEBUG, TRACE or RELEASE and use these in program code to enable/disable code generation with #if.
I need to do similar thing in a Windows 8 Metro Javascript application: have different builds (Debug/Release) behave slightly differently. Is this supported somehow?