This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array | |
( | |
[response] => Array | |
( | |
[request] => Array | |
( | |
[date] => Fri, 07 Mar 2014 04:48:27 +0100 | |
[resource] => /connections/616fcdf2-e4f9-497d-80c6-5dba4a4d6ca4.json | |
[status] => Array | |
( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var feature = [ | |
{ | |
name: "อัลบั้มภาพ", | |
description: "อัลบั้มภาพงานบวช", | |
weight: 1, | |
feature_estimation_time: { | |
design: 2, | |
dev: 3, | |
css: 1, | |
test: 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function printTri(size, isBlank) { | |
// validate | |
if (isBlank && size < 3) { | |
console.log('Size should mor than 3'); | |
return false; | |
} | |
var i; | |
var star; | |
var blank; | |
for(i = 1; i <= size; i++) { |