Created
August 7, 2018 19:59
-
-
Save oleersoy/6167eaa4427b2b22131488e1629ace30 to your computer and use it in GitHub Desktop.
Partial Article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Product { | |
name: string; | |
description: string; | |
} | |
let currentProduct: Product = { | |
name: "FS2000", | |
description: "Hippie Control" | |
}; | |
function update1(product: Product) { | |
Object.assign(currentProduct, product); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment