_.flatten(array, [shallow])
- array
- array
- shallow
- boolean
多次元配列を1次元配列に変換した配列を返す。
サンプル
Javascript
debug1 = new Debug('#code1-dump');
$('span#code1-execute').on('click', function(e){
var value = _.flatten([1, [2], [3, [[4]]]]);
debug1.dump(value);
});
$('span#code1-console-clear').on('click', function(e){
debug1.clear();
});
HTML
<span class="cq-btn m-success" id="code1-execute">実行</span>
<span class="cq-btn m-danger" id="code1-console-clear">削除</span>
<div id="code1-dump"></div>
[shallow]がtrueの場合、1階層分のみ展開される。
サンプル
Javascript
var debug2 = new Debug('#code2-dump');
$('span#code2-execute').on('click', function(e){
var value = _.flatten([1, [2], [3, [[4]]]], true);
debug2.dump(value);
});
$('span#code2-console-clear').on('click', function(e){
debug2.clear();
});
HTML
<span class="cq-btn m-success" id="code2-execute">実行</span>
<span class="cq-btn m-danger" id="code2-console-clear">削除</span>
<div id="code2-dump"></div>