I am a high school student new to swift and I can't seem to be able to change a boolean value at in index, this is my variable
var value = [[String:Bool]]()
value.append(["Club 1" : true])
I want to be able to change the value to false no matter how many values that I append.
I found out that you can reference them like
value[0].values.first!
but I want to be able to change it
Thanks in advance
