JSFiddle - React, Tailwind, and code Playground

by Avi Algaly

JavaScript

const eeprom_write_text = {
  type: "hwop",
  obj: "patch-eeprom",
  op: "write",
  message_id: 0,
  debug: 0,
  patches_params: [{
    index: 0,
    address: 0,
    message_length: 0,
    data_array: [1, 2, 3, 4, 5, 6]
  }]
};
let str1 = JSON.stringify(eeprom_write_text);
//let str2 = str1.replaceAll('"','');
alert(str1);