This website collects cookies to deliver better user experience
['😉', '👊'].concat('😩') // Output: (3) ["😉", "👊", "😩"]
['👨🦳', '👩🦳'].join('💘') // Output: "👨🦳💘👩🦳"
["😉", "👊", "😩"].slice(2) // Output: ["😩"]
["😜", "👍", "🥶"].indexOf('👍') // Output: 1
["😜", "👍", "👍"].lastIndexOf('👍') // Output: 2
["😜", "👍", "🥶"].reverse() // Output: (3) ["🥶", "👍", "😜"]
["👨", "👴", "👦"].sort() // Output: (3) ["👦", "👨", "👴"]
["👦", "👨", "👴"].shift() // Output: (2) ["👨", "👴"]
["👦", "👨", "👴"].unshift('👩'); // Output: (4) ["👩", "👦", "👨", "👴"]
["👦", "👨", "👴"].pop(); // Output: (2) ["👦", "👨"]
["👦", "👨", "👴"].push('🔥'); // Output: (4) ["👦", "👨", "👴", "🔥"]
["👦", "👨", "👴"].filter(person => person == '👨') // Output: ["👨"]
["👦", "👨", "👴"].includes('👦') // Output: true
Happy.Code()
36
0