Skip to content

Instantly share code, notes, and snippets.

@bamossza
Last active March 12, 2017 14:10
Show Gist options
  • Save bamossza/f623404ee6f45339531c8c0846aa04b2 to your computer and use it in GitHub Desktop.
Save bamossza/f623404ee6f45339531c8c0846aa04b2 to your computer and use it in GitHub Desktop.
let name: string = "bamossza";
name = 2; // เออเร่อเพราะว่าไม่ใช่ string
Error: cannot assign a `number` to a `string`
..
// แต่หากเราแปลงให้เป็น JavaScript ก็จะได้แบบนี้
..
var name = "bamossza";
name = 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment