So for example in the javascript editor you can see code that wont be reachable as it is greyed out:
This would be great in cfml for the following cases:
function ret(){
var athing = "this";
return athing;
var notReachable = "Nothing is rechable";
}
function loc(){
var athing = "this";
location url="/";
var notReachable = "Nothing is rechable";
}
function bort(){
var athing = "this";
abort;
var notReachable = "Nothing is rechable";
}
So for example in the javascript editor you can see code that wont be reachable as it is greyed out:
This would be great in cfml for the following cases: