Which of the following ways property called myProperty in primary page can be obtained
-
.myProperty
-
Primary. myProperty
-
local.myProperty
-
Primary. MyProperty
-
.MyProperty
-
primary.myProperty
A,B,F
Correct answer
Explanation
Properties on the primary page can be accessed using dot notation (.myProperty) or by explicitly prefixing the page name as Primary.myProperty or primary.myProperty. The keyword Primary is case-insensitive, but local variables use the local prefix, and case-sensitive property naming conventions must be matched.