javascript - How return array of arrays in node js? - Stack Overflow

I have module like this in node jsvar types =function (){var typeList= new Array();typeList[0] = &quo

I have module like this in node js

var types =  function (){

  var typeList= new Array();
  typeList[0] = "varchar";

  var numericDTs= new Array();
  numericDTs[0] = "tinyint";

  var binaryDTs= new Array();
  binaryDTs[0] = "tinyblob";

  var data = array();
  data[0] = typeList;
  data[1] = numericDTs;
  data[2] = binaryDTs;

  return data;
}

module.exports = {
  types: types,
}

i am calling this module like this

var types = require("./include/types");
console.log(types.types());

i got error like this 500 ReferenceError: array is not defined no error if i return only types or typeList or binaryDTs. How return array of arrays in node js?

I have module like this in node js

var types =  function (){

  var typeList= new Array();
  typeList[0] = "varchar";

  var numericDTs= new Array();
  numericDTs[0] = "tinyint";

  var binaryDTs= new Array();
  binaryDTs[0] = "tinyblob";

  var data = array();
  data[0] = typeList;
  data[1] = numericDTs;
  data[2] = binaryDTs;

  return data;
}

module.exports = {
  types: types,
}

i am calling this module like this

var types = require("./include/types");
console.log(types.types());

i got error like this 500 ReferenceError: array is not defined no error if i return only types or typeList or binaryDTs. How return array of arrays in node js?

Share Improve this question edited Sep 28, 2016 at 4:03 extensa5620 6992 gold badges9 silver badges22 bronze badges asked Jan 23, 2013 at 15:55 open source guyopen source guy 2,78710 gold badges40 silver badges62 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

Your error is here:

var data = array();

Write the following instead:

var date = [];

Actually replace every new Array() with [].

Instead of

var typeList= new Array();
typeList[0] = "varchar";

write var typeList = [ "varchar" ]; and so on.

EDIT:

Actually your whole function can be reduced to:

var types = function() {
     return [ [ "varchar" ], [ "tinyint" ], [ "tinyblob" ] ];
};

Expanding on the other answer,

assuming you don't use the function anywhere else, you could just write

 module.exports = {
   types: function(){
     return [["varchar"], ["tinyint"], ["tinyblob"]];
   }
 }

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743620542a4479702.html

相关推荐

  • javascript - How return array of arrays in node js? - Stack Overflow

    I have module like this in node jsvar types =function (){var typeList= new Array();typeList[0] = &quo

    21小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信