Skip to content

Instantly share code, notes, and snippets.

@adamjgrant
Created January 21, 2020 15:00
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 adamjgrant/d0659c15926b04a17779e9450fb053d9 to your computer and use it in GitHub Desktop.
Save adamjgrant/d0659c15926b04a17779e9450fb053d9 to your computer and use it in GitHub Desktop.
var str = "%filltext:name=field 1%";
str.split("").map((char, index) => {
return index%2 == 0 ? char.toUpperCase() : char.toLowerCase();
}).join("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment