Skip to content

Instantly share code, notes, and snippets.

@huxleydias
Last active March 27, 2019 14:36
Show Gist options
  • Save huxleydias/d81e8f99551b1d28cd84b6adee91a4a8 to your computer and use it in GitHub Desktop.
Save huxleydias/d81e8f99551b1d28cd84b6adee91a4a8 to your computer and use it in GitHub Desktop.
// Errado:
var dataLayer = [{
pageType: 'home'
}];
// Correto:
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
pageType: 'home'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment