You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_4.js 162B

12345678910111213
  1. let obj = {
  2. dataType: {
  3. primitive :['number','string','boolean']
  4. nonPrimitive:['object']
  5. }
  6. greeting: funcion () {
  7. console.log('hi')
  8. }
  9. obj.greeting()