JSFiddle - React, Tailwind, and code Playground

by booktu8

JavaScript

function aaa(id,obj) {

  /* {
  a:1,
  b:2
  } */

  let a = obj.a

  let b = obj.b

  let c = a + b;


  console.log(id,c)




}


let a = {
  a: 1,
  b: 2
}

aaa('body',a)

aaa('html',{
a:3,
b:99


})