Is there any way to add method to JSON object? -


क्या JSON ऑब्जेक्ट में विधि जोड़ने का कोई तरीका है?

हाँ जावास्क्रिप्ट फ़ंक्शंस प्रथम श्रेणी ऑब्जेक्ट हैं, जिसका मतलब है कि आप उन्हें अन्य ऑब्जेक्ट को गुणों के रूप में संलग्न कर सकते हैं।

  var myJson = {one: 1, two: 2}; MyJson.Sum = समारोह () {this.one इस दो दो; }; Var परिणाम = myJson.Sum (); // परिणाम == 3  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -