I am not sure if this is what you want, but I'll give you what I think you are wanting.
Right now, you have this.arr containing two
string values, but you want it to contain two boolean types. In that case, just put:
PHP Code:
this.arr = {0 == 1, 1 == 1};
Is that what you want, or do you want to convert the string types into boolean types?