udarakalpana / javascript_katas

This is katas for learn javascript fundamental concept.
0 stars 0 forks source link

Kata 8: Object to Array #9

Open udarakalpana opened 4 months ago

udarakalpana commented 4 months ago

Write a function that takes below object and returns an array of its keys and values.

const book = { title: '1984', author: 'George Orwell' }

// Output: [['title', '1984'], ['author', 'George Orwell']]

KavishkaImalsha commented 4 months ago

@udarakalpana I started

sgc1996 commented 4 months ago

@udarakalpana I started this kata sir

Tharanga1988 commented 4 months ago

@udarakalpana I have started this

thushan1986 commented 3 months ago

I have started this