Quantcast
Browsing latest articles
Browse All 4 View Live

Answer by fdomn-m for create a new array and push into it in one line -...

You are missing the array-initialisation syntax:var x = [ 1, 2, 3 ];in your case, this would be:this.values = [ value ];More info here:...

View Article


Answer by Rohit Agrawal for create a new array and push into it in one line -...

The way you are creating the array and pushing value to it is correct. But since it is created inside the function you need to access this object outside the function in some way.Since you are not...

View Article


Answer by Nina Scholz for create a new array and push into it in one line -...

Just take the value in an array.function Spot(value) { this.x = null; this.y = null; this.values = [value];}var point = new Spot('foo')console.log(point);

View Article

create a new array and push into it in one line - Javascript OOP

I've this code with a function, wherein a I'm trying to define an array then on the next line pushing to it:function Spot(value) { this.x = null; this.y = null; this.values = [];...

View Article
Browsing latest articles
Browse All 4 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>