ServiceNow Certified Application Developer — Question 34
Which one of the following is NOT a debugging strategy for client-side scripts?
Answer options
- A. g_form.addInfoMessage()
- B. Field Watcher
- C. jslog()
- D. gs.log()
Correct answer: D
Explanation
The correct answer is D, gs.log(), as it is used for server-side logging rather than client-side debugging. Options A, B, and C are all tools or methods specifically designed for debugging client-side scripts.