I am new to OOP concepts, but I will try my best.
Yes, Instance Variables are variables with normal datatypes BUT they BELONG to a specific instance of OBJECT. An Instance Variable is a variable that describes "Characteristic" or "Property" of an object. e.g. carColor, carName could be a Instance Variable of class "Car" since it describes a Characteristic of object car.
When a new object is instantiated with the keyword "new" all the instance variables are automatically attached to the object and can be tracked seprately. e.g.
var carA = new car
carA.carName = "Honda"
carA.carColor= "Blue"
var carB = new car
carA.carName = "Austin"
carA.carColor= "Red"