What is the difference between copying and cloning?

There’s no formal definition of these concepts, atleast not one that spans all languages.

What’s usually common though:

  • clone – create something new based on something that exists.
  • copying – copy from something that exists to something else (that also already exists).

Leave a Comment