Each field is a separate object, so if you have 3 fields like "A", "B", and "C" each is a unique object has a unique value. Each field has to be accessed individually, You need to get the value for field "A" in one statement, the value of field "B" in another statement.
var C = this.getField( "A").value * this.getField("B").value;
if( C < 10 ) event.value = 10;
else event.value = C;
You might see it more clearly with some code like:
var A = this.getField( "A").value; // the value of field A;
var B = this.getField( "B").value; // the value of field B;
var C = A * B; // the value of field A times the value of field B;
if( C < 10 ) {
event.value = 10; // value is 10 when product less than 10;
} else [{
event.value = C; // else value is the product;
}