Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created May 5, 2019 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/ab9d7967c1a03d5d5444a22c6fdb3785 to your computer and use it in GitHub Desktop.
Save ndthanh/ab9d7967c1a03d5d5444a22c6fdb3785 to your computer and use it in GitHub Desktop.
function myFunction() {
var x = 'Hello'; // Kiểu string
var z = 23; // Kiểu số, kiểu Number
var y = true; // Kiểu boolean
var array = ['Hello', 'World', 23, 4, false];
array[0] // 'Hello'
var obj = { 'firstName': 'Thanh', 'lastName': 'Nguyen' }
Logger.log(array[0]);
Logger.log('Tên của tôi là ' + obj.firstName);
obj.firstName;
obj['firstName'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment