i have pretty basic question. sorry for that. I'm trying to build result point system for test. but there is that problem everything is printing together. there is a code:
var g_Point = [8,9,10];
var n_Point = [5,6,7];
var b_Point = [1,2,3,4];
var my_Points = 10;
if(my_Points === g_Point){
document.write('You Got Really Good Point');
}else if(my_Points === n_Point){
document.write('You Got Normal Points');
}else if(my_Points === b_Point){
document.write('You Got Really Bad Points');
}