{"id":21619,"date":"2022-11-14T12:41:44","date_gmt":"2022-11-14T07:11:44","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/"},"modified":"2022-11-14T12:41:44","modified_gmt":"2022-11-14T07:11:44","slug":"solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/","title":{"rendered":"[Solved] how to map many arrays values that have same construct to an object?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-50458800\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"50458800\" data-parentid=\"45678565\" data-score=\"0\" data-position-on-page=\"2\" data-highest-scored=\"0\" data-question-has-accepted-highest-score=\"0\" itemprop=\"suggestedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<h1>my solution.<\/h1>\n<blockquote>\n<p>I like just using the ES6(es2015+) way.<\/p>\n<\/blockquote>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"true\" data-babel=\"true\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-js lang-js prettyprint-override\"><code>const test_array = [\r\n    {\r\n        \"name\": \"AnyManagedFundsRow\",\r\n        \"columnMeta\": {\r\n            \"a0\": \"STRING\",\r\n            \"a1\": \"STRING\",\r\n            \"a2\": \"STRING\",\r\n            \"a3\": \"DATE\",\r\n            \"a4\": \"DATE\",\r\n            \"a5\": \"DOUBLE\",\r\n            \"a6\": \"INT\"\r\n        },\r\n        \"rows\": [\r\n            [\r\n                \"\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8\",\r\n                \"\u534e\u590f\u5927\u4e2d\u534e\u4f01\u4e1a\u7cbe\u9009\u7075\u6d3b\u914d\u7f6e\u6df7\u5408(QDII)\",\r\n                \"\u5176\u4ed6\u578b\u57fa\u91d1\",\r\n                \"2016-01-20\",\r\n                \"\",\r\n                21.877086009428236,\r\n                65135\r\n            ],\r\n            [\r\n                \"\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8\",\r\n                \"\u534e\u590f\u5927\u76d8\u7cbe\u9009\u6df7\u5408\",\r\n                \"\u6df7\u5408\u578b\u57fa\u91d1\",\r\n                \"2015-09-01\",\r\n                \"2017-05-02\",\r\n                10.307680340705128,\r\n                2944\r\n            ]\r\n        ]\r\n    }\r\n];\r\n\r\n\r\n\/**\r\n * ES6 solution\r\n *\r\n *\/\r\n\r\n\r\nlet keys = Object.keys(test_array[0].columnMeta),\r\n    types = Object.values(test_array[0].columnMeta),\r\n    target_objects = test_array[0].rows.map(\r\n    (arr) =&gt; {\r\n        let obj = {};\r\n        arr.forEach(\r\n            (item, i) =&gt; {\r\n                obj[keys[i]] = {};\r\n                obj[keys[i]].Description = `${item}`;\r\n                obj[keys[i]].type = types[i];\r\n            }\r\n        );\r\n        return obj;\r\n    }\r\n);\r\n\r\nconsole.log(`solution =\\n`, JSON.stringify(target_objects, null, 4));<\/code><\/pre>\n<\/div>\n<\/div>\n<blockquote>\n<p>demo<\/p>\n<\/blockquote>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\" alt=\"enter image description here\"><\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved how to map many arrays values that have same construct to an object? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] my solution. I like just using the ES6(es2015+) way. const test_array = [ { &#8220;name&#8221;: &#8220;AnyManagedFundsRow&#8221;, &#8220;columnMeta&#8221;: { &#8220;a0&#8221;: &#8220;STRING&#8221;, &#8220;a1&#8221;: &#8220;STRING&#8221;, &#8220;a2&#8221;: &#8220;STRING&#8221;, &#8220;a3&#8221;: &#8220;DATE&#8221;, &#8220;a4&#8221;: &#8220;DATE&#8221;, &#8220;a5&#8221;: &#8220;DOUBLE&#8221;, &#8220;a6&#8221;: &#8220;INT&#8221; }, &#8220;rows&#8221;: [ [ &#8220;\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8&#8221;, &#8220;\u534e\u590f\u5927\u4e2d\u534e\u4f01\u4e1a\u7cbe\u9009\u7075\u6d3b\u914d\u7f6e\u6df7\u5408(QDII)&#8221;, &#8220;\u5176\u4ed6\u578b\u57fa\u91d1&#8221;, &#8220;2016-01-20&#8221;, &#8220;&#8221;, 21.877086009428236, 65135 ], [ &#8220;\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8&#8221;, &#8220;\u534e\u590f\u5927\u76d8\u7cbe\u9009\u6df7\u5408&#8221;, &#8220;\u6df7\u5408\u578b\u57fa\u91d1&#8221;, &#8220;2015-09-01&#8221;, &#8220;2017-05-02&#8221;, 10.307680340705128, 2944 ] ] &#8230; <a title=\"[Solved] how to map many arrays values that have same construct to an object?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\" aria-label=\"More on [Solved] how to map many arrays values that have same construct to an object?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[361,333,356,391,430],"class_list":["post-21619","post","type-post","status-publish","format-standard","hentry","category-solved","tag-arrays","tag-javascript","tag-json","tag-loops","tag-object"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] how to map many arrays values that have same construct to an object? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] how to map many arrays values that have same construct to an object? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] my solution. I like just using the ES6(es2015+) way. const test_array = [ { &quot;name&quot;: &quot;AnyManagedFundsRow&quot;, &quot;columnMeta&quot;: { &quot;a0&quot;: &quot;STRING&quot;, &quot;a1&quot;: &quot;STRING&quot;, &quot;a2&quot;: &quot;STRING&quot;, &quot;a3&quot;: &quot;DATE&quot;, &quot;a4&quot;: &quot;DATE&quot;, &quot;a5&quot;: &quot;DOUBLE&quot;, &quot;a6&quot;: &quot;INT&quot; }, &quot;rows&quot;: [ [ &quot;\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8&quot;, &quot;\u534e\u590f\u5927\u4e2d\u534e\u4f01\u4e1a\u7cbe\u9009\u7075\u6d3b\u914d\u7f6e\u6df7\u5408(QDII)&quot;, &quot;\u5176\u4ed6\u578b\u57fa\u91d1&quot;, &quot;2016-01-20&quot;, &quot;&quot;, 21.877086009428236, 65135 ], [ &quot;\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8&quot;, &quot;\u534e\u590f\u5927\u76d8\u7cbe\u9009\u6df7\u5408&quot;, &quot;\u6df7\u5408\u578b\u57fa\u91d1&quot;, &quot;2015-09-01&quot;, &quot;2017-05-02&quot;, 10.307680340705128, 2944 ] ] ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-14T07:11:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] how to map many arrays values that have same construct to an object?\",\"datePublished\":\"2022-11-14T07:11:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\"},\"wordCount\":41,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\",\"keywords\":[\"arrays\",\"javascript\",\"json\",\"loops\",\"object\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\",\"name\":\"[Solved] how to map many arrays values that have same construct to an object? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\",\"datePublished\":\"2022-11-14T07:11:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] how to map many arrays values that have same construct to an object?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] how to map many arrays values that have same construct to an object? - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] how to map many arrays values that have same construct to an object? - JassWeb","og_description":"[ad_1] my solution. I like just using the ES6(es2015+) way. const test_array = [ { \"name\": \"AnyManagedFundsRow\", \"columnMeta\": { \"a0\": \"STRING\", \"a1\": \"STRING\", \"a2\": \"STRING\", \"a3\": \"DATE\", \"a4\": \"DATE\", \"a5\": \"DOUBLE\", \"a6\": \"INT\" }, \"rows\": [ [ \"\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8\", \"\u534e\u590f\u5927\u4e2d\u534e\u4f01\u4e1a\u7cbe\u9009\u7075\u6d3b\u914d\u7f6e\u6df7\u5408(QDII)\", \"\u5176\u4ed6\u578b\u57fa\u91d1\", \"2016-01-20\", \"\", 21.877086009428236, 65135 ], [ \"\u534e\u590f\u57fa\u91d1\u7ba1\u7406\u6709\u9650\u516c\u53f8\", \"\u534e\u590f\u5927\u76d8\u7cbe\u9009\u6df7\u5408\", \"\u6df7\u5408\u578b\u57fa\u91d1\", \"2015-09-01\", \"2017-05-02\", 10.307680340705128, 2944 ] ] ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/","og_site_name":"JassWeb","article_published_time":"2022-11-14T07:11:44+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] how to map many arrays values that have same construct to an object?","datePublished":"2022-11-14T07:11:44+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/"},"wordCount":41,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png","keywords":["arrays","javascript","json","loops","object"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/","name":"[Solved] how to map many arrays values that have same construct to an object? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png","datePublished":"2022-11-14T07:11:44+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-how-to-map-many-arrays-values-that-have-same.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-map-many-arrays-values-that-have-same-construct-to-an-object\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] how to map many arrays values that have same construct to an object?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=21619"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21619\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=21619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=21619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=21619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}