私は Visual Studio に甘やかされています (しかし、代替手段を探しています)。以下の例では、FirstCue と入力したとします。その変数のメンバー (FeedbackMild など) を確認したいと思います。
また、 FirstCueの定義にジャンプできるようにしたいです。
これまでのところ、NetBeans を調べてきました (最初は実行せず、2 番目も実行したかどうかは確認しませんでした)(.
function clsCues () {
this.FeedbackMild=true ; //boolean- whether we provide feedback to let them know if something is allowed or now (i.e., if they click on the wrong thing we'd do a Mild Feedback "ding"
this.FeedbackCorrectIncorrect=true; //boolean -provide audio/visual feedback if their answer is correct
}
var FirstCue=new clsCues ();
FirstCue.FeedbackMild=true;