About psphanindrakuma - ServiceNow Community
Tera Guru
Tera Guru
since ‎09-18-2017
3 weeks ago

User Statistics

  • 117 Posts
  • 6 Solutions
  • 9 Helpfuls given
  • 222 Helpfuls received

User Activity

List Of Most Commonly Shown Status Code Along With Their Saying.....   100 : Continue101 : Switching Protocol102: Processing (WebDAV)103 : Early Hints200: OK201 : Created202 : Accepted203 : Non-Authoritative Information204 : No Content205 : Reset Con...
Hi All, I'm starting a new series of short and interesting articles. This is the first one in the series. I hope you will like it.   Have you ever faced it when you try to assign a field to a variable and it results in an empty value? var field = cur...
Length The length property returns the length of a string. var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var sln = txt.length; IndexOf The indexOf() method returns the index of (the position of) the first occurrence of a specified text in a string var str ...
1. Tostring The toString() method is what it sounds, returns the number as a string. However, if you provide a parameter, such as 2, 8, or 16 it will return binary, octal or hexadecimal value respectively. var num = 123; num.toString(); // "123" (100...
Field-Based APIs Hide/D­isplay variable : g_for­m.s­etD­isp­lay­(<f­ld>­,tr­ue/­fal­se); Disable a field : g_for­m.s­etD­isa­ble­(<f­ld>­,tr­ue/­fal­se); Field ReadOnly : g_for­m.s­etR­ead­Onl­y(<­fld­>,t­rue­/fa­lse); Clear Value fro...