freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/deepcopy.arabic.md

1.2 KiB

title id challengeType videoUrl localeTitle
Deepcopy 596a8888ab7c01048de257d5 5

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof deepcopy === "function", "<code>deepcopy</code> should be a function.");'
  - text: ''
    testString: 'assert(typeof deepcopy(obj1) === "object", "<code>deepcopy({test: "test"})</code> should return an object.");'
  - text: ''
    testString: 'assert(deepcopy(obj2) != obj2, "Should not return the same object that was provided.");'
  - text: ''
    testString: 'assert.deepEqual(deepcopy(obj2), obj2, "When passed an object containing an array, should return a deep copy of the object.");'
  - text: ''
    testString: 'assert.deepEqual(deepcopy(obj3), obj3, "When passed an object containing another object, should return a deep copy of the object.");'

Challenge Seed

function deepcopy (obj) {
  // Good luck!
  return true;
}

After Test

console.info('after the test');

Solution

// solution required