Spread operatörü ve initalValue değerini kullanarak nesne içindeki dizi değerlerini birleştirmek


( ! ) Notice: Undefined index: description in /home/prototurk.com/public_html/app/controller/demo.php on line 171
Call Stack
#TimeMemoryFunctionLocation
10.0002360464{main}( ).../index.php:0
20.0040442312require( '/home/prototurk.com/public_html/app/controller/demo.php' ).../index.php:101

Prototürk'e geri dön
const posts = [
  {
    title: "Post 1",
    tags: ["php", "css"],
  },
  {
    title: "Post 2",
    tags: ["js", "c#"],
  },
  {
    title: "Post 3",
    tags: ["html5", "css"],
  },
];

const allTags = posts.reduce((acc, post) => [...acc, ...post.tags], []);
console.log([...new Set(allTags)])