Skip to content

Instantly share code, notes, and snippets.

@matthiasguentert
Last active October 1, 2021 14:26
Show Gist options
  • Save matthiasguentert/ae9ac1050d1eee352f76d5e470b1ae12 to your computer and use it in GitHub Desktop.
Save matthiasguentert/ae9ac1050d1eee352f76d5e470b1ae12 to your computer and use it in GitHub Desktop.
Bicep Cheat Sheet

Concatenate two or more arrays

var a1 = [
  'a'
  'b'
]

var a2 = [
  'c'
]

var result = union(a1, a2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment