javascript interview questions practice code example
Example: puzzle interview questions javascript
// What is the Output var Employee = { company: 'xyz'}var emp1 = Object.create(Employee);delete emp1.companyconsole.log(emp1.company);// Output 'xyz'