Javascript showing the function text instead of printing value on screen -


 फ़ंक्शन हेक्स (x, y, side, isLast, color) {// हेक्स ऑब्जेक्ट कन्स्ट्रक्टर This.x = x; यह। Y = y; This.side = पक्ष; This.isLast = isLast; This.color = color; फ़ंक्शन गुणा () {return.x * this.y; } This.multiply = गुणा; } Var हेक्सागन = नया हेक्स (22,22,20,0,1); document.write (hexagon.multiply); 

जब index.htm लोड हो रहा है, परिणाम जो स्क्रीन पर लिखते हैं, वापस लौटने वाले मान के फ़ंक्शन:

फ़ंक्शन गुणा () {return.x * this.y; }

: (

आप भूल गए ():

< यदि आप () का उपयोग नहीं करते हैं, तो जावास्क्रिप्ट एक कोड के रूप में multiply का इलाज करेगा; । और इसे सामग्री लिखें- इस मामले में, फ़ंक्शन का कोड।


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -