Socialify

Folder ..

Viewing tester.js
24 lines (18 loc) • 593.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * This file is only used for testing under development.
 * Please do not consider this file to be a part of this code.
 * There can be some code here which does not correspond to the the code at all.
 */

//  var walk = require('walk');
//  var fs = require('fs');
//  var walker;
//  const path = require('path');

//  walker = walk.walk(__dirname + '/sets');

//  walker.on("directory", function (root, fileStats, next) {
//    console.log(path.join(root, fileStats.name))
//    next()
//  });

const x = ['a', 'b', 'c', 'd', 'e', 'f']

for (const value of x) {
  console.log(value)
}