{"id":11852,"date":"2023-01-19T09:54:54","date_gmt":"2023-01-19T09:54:54","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=11852"},"modified":"2023-02-02T08:14:43","modified_gmt":"2023-02-02T08:14:43","slug":"javascript-array-filter-method","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/","title":{"rendered":"JavaScript Array filter() Method"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\" alt=\"\" \/><\/p>\n<p>In this post, we will discuss the JavaScript Array filter() method. We will explain the array filter() method by taking different examples. Firstly, we will see the definition of the JavaScript array filter() method.<\/p>\n<h2>What is the JavaScript Array Filter() Method?<\/h2>\n<p>The JavaScript <strong>Array filter()<\/strong> Method is used to generate a new array from an existing array that only contains the components of the original array that meet the criteria specified by the argument method.<\/p>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>array.filter(callback(element, index, arr), thisValue)<\/code><\/pre>\n<h3>Parameters:<\/h3>\n<p>As indicated and further defined below, this procedure accepts five parameters: <\/p>\n<ul>\n<li><strong>callback:<\/strong> The function that will be invoked for each element of the array is stored in this parameter.<\/li>\n<li><strong>element:<\/strong> The value of the components presently being processed is stored in the parameter.<\/li>\n<li><strong>index:<\/strong> The index of the currently selected element in the array, starting at 0, is included in this optional argument.<\/li>\n<li><strong>arr:<\/strong> This argument, which holds the entire array on which Array, is optional. All are called.<\/li>\n<li><strong>thisValue:<\/strong> This argument, which is optional, contains the context that must be given since it will be utilised when the callback function is executed. Every time the callback function is called, the context will be utilised in this way if it is supplied, otherwise, undefined is used by default.<\/li>\n<\/ul>\n<h2>JavaScript Array Filter(): Examples<\/h2>\n<p>To better understand the concept let&#8217;s look at some additional JavaScript examples of array filters.<\/p>\n<p><strong>Example 1:<\/strong><br \/>\nIn this illustration, the canVote() function checks a condition, and the method filter() only adds members to the new array that meets that requirement.<\/p>\n<pre><code>\/\/ JavaScript to illustrate findIndex() method\n    function canVote(age) {\n        return age &gt;= 8;\n    }\n\n    function func() {\n        var filtered = [4, 3, 10, 20].filter(canVote);\n        console.log(filtered);\n    }\n    func();<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>[10, 20]<\/code><\/pre>\n<p><strong>Example 2:<\/strong> In this illustration, the function filter() makes a new array in which only the elements that meet the isPositive() function&#8217;s criterion are included.<\/p>\n<pre><code>function isPositive(value) {\n      return value &gt; 10;\n    }\n\n    var filtered = [12, 50, 0, -5, 44].filter(isPositive);\n    console.log(filtered);<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>[12, 50, 44]<\/code><\/pre>\n<p><strong>Example 3:<\/strong>In this illustration, the function filter() makes a new array in which only the elements that meet the isEven() function&#8217;s criterion are included.<\/p>\n<pre><code>function isEven(value) {\n      return value % 2 == 0;\n    }\n\n    var filtered = [11, 98, 31, 23, 944].filter(isEven);\n    console.log(filtered);<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>[98, 944]<\/code><\/pre>\n<h3>Return value:<\/h3>\n<p>Only those members in the new array that meet the arg_function&#8217;s requirement are returned by this procedure.<\/p>\n<h2>How does the JavaScript Array filter() method work?<\/h2>\n<p>Take a look at the example below to see how JavaScript&#8217;s array filter functions. In this illustration, we&#8217;ll make an array of integer values. After that, we&#8217;ll filter out even integers using the array filter() function and log the resulting array to the console.<\/p>\n<pre><code>let num = [3, 6, 7, 12, 18, 23, 44, 62, 81];\nlet even_num = num.filter(function(item){\n  return item % 2 == 0; });\nconsole.log(even_num);<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>CONSOLE X\n(5) [6, 12, 18, 44, 62]<\/code><\/pre>\n<p>The output shows that only the even members of the num array were added to the new even num array using the array filter method. Let&#8217;s now go out how this operates step by step.<\/p>\n<ol>\n<li>The test condition return item% 2 == 0 is included in the declaration of the filter function.<\/li>\n<li>It will begin iterating over the num array&#8217;s items and succeed in the test.<\/li>\n<li>If the item&#8217;s remaining after dividing by two is zero, it will be added to the new array even_num.<\/li>\n<li>The resultant even num array will be sent to the terminal after iterating over all the items.<\/li>\n<\/ol>\n<h2>Drawbacks of JavaScript Array Filter()<\/h2>\n<p>The JavaScript array filter technique has the following drawbacks in addition to its many advantages:<\/p>\n<ul>\n<li>We must store the filtered array in order to use it later because the filter method does not alter the original array.<\/li>\n<li>If there are no elements in the array, the array filter technique is ineffective.<\/li>\n<\/ul>\n<h2>Browsers That Support Array Filter In JavaScript<\/h2>\n<p>The list of browsers that permit the usage of the JavaScript array filter technique is shown below.<\/p>\n<ul>\n<li>Google Chrome<\/li>\n<li>Microsoft Edge 9<\/li>\n<li>Mozilla Firefox 1.5<\/li>\n<li>Opera 9.5<\/li>\n<li>Safari 3<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, you have learned everything about the JavaScript array filter(). We hope this article clears all your doubts and gives you a good grasp on the JavaScrip filter() method.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post, we will discuss the JavaScript Array filter() method. We will explain the array filter() method by taking different examples. Firstly, we will see the definition of the JavaScript array filter() method. What is the JavaScript Array Filter() Method? The JavaScript Array filter() Method is used to generate a new array from an [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[162],"tags":[],"class_list":["post-11852","post","type-post","status-publish","format-standard","hentry","category-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>JavaScript Array filter() Method: Definition, Working, and Examples.<\/title>\n<meta name=\"description\" content=\"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Array filter() Method: Definition, Working, and Examples.\" \/>\n<meta property=\"og:description\" content=\"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-19T09:54:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-02T08:14:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"JavaScript Array filter() Method\",\"datePublished\":\"2023-01-19T09:54:54+00:00\",\"dateModified\":\"2023-02-02T08:14:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\"},\"wordCount\":606,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\",\"articleSection\":[\"Javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\",\"name\":\"JavaScript Array filter() Method: Definition, Working, and Examples.\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\",\"datePublished\":\"2023-01-19T09:54:54+00:00\",\"dateModified\":\"2023-02-02T08:14:43+00:00\",\"description\":\"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Javascript\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript Array filter() Method\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JavaScript Array filter() Method: Definition, Working, and Examples.","description":"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.","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:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Array filter() Method: Definition, Working, and Examples.","og_description":"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.","og_url":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-01-19T09:54:54+00:00","article_modified_time":"2023-02-02T08:14:43+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"JavaScript Array filter() Method","datePublished":"2023-01-19T09:54:54+00:00","dateModified":"2023-02-02T08:14:43+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/"},"wordCount":606,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg","articleSection":["Javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/","url":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/","name":"JavaScript Array filter() Method: Definition, Working, and Examples.","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg","datePublished":"2023-01-19T09:54:54+00:00","dateModified":"2023-02-02T08:14:43+00:00","description":"Understanding JavaScript Array filter() Method. Here we will learn about its definition and working with examples.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674107372517-JavaScript%20Array%20filter%28%29%20Method.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/javascript-array-filter-method\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Javascript","item":"https:\/\/prepbytes.com\/blog\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"JavaScript Array filter() Method"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/11852","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=11852"}],"version-history":[{"count":3,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/11852\/revisions"}],"predecessor-version":[{"id":12065,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/11852\/revisions\/12065"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=11852"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=11852"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=11852"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}