BIG
let arr_source_data = new Array('a' ,'b' ,'c' ,'e' ,'f');
let jsonObj = new Object();
let arr_result_data = new Array();
let json_str = "";
arr_source_data.forEach(
function(item, index){
console.log( item + "--" + index);
jsonObj[ item ] = arr_source_data[index];
}
);
arr_result_data.push( jsonObj );
let json_str = JSON.stringify(arr_result_data);
console.log( json_str );
LIST
'!!...JS-HTML' 카테고리의 다른 글
[javascript] object to json string SAMPLE CODE (0) | 2023.10.11 |
---|---|
[javascript] jQuery Detect textarea tag height and change sample (0) | 2023.08.26 |
[javascript] jQuery 첨부파일 용량검사 SAMPLE CODE (0) | 2023.07.12 |
[HTML] Div 를 이용하여 Table Grid 만들기 - SAMPLE CODE (0) | 2023.06.16 |
[javascript] 웹페이지 높이값 구하기 (0) | 2023.01.04 |