badcoder123 Posted September 7, 2017 Posted September 7, 2017 Hey I'm new to use arrays. How would I get this code to output each name and not just the first one? Global $aArray[3] = ["Bob", "Joe", "Rob"] For $i In $aArray ConsoleWrite($aArray[$i] & @CRLF) Next It just writes Bob 3 times. I've tried putting $i += 1 but it doesn't output different names
badcoder123 Posted September 7, 2017 Author Posted September 7, 2017 Found the solution... I feel like an idiot. Global $aArray[] = ["Bob", "Joe", "Rob"] For $i In $aArray ConsoleWrite($i & @CRLF) Next
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now