For example, (normal way) using 10 as the base it would look like: 1011=1x10^3 + 0x10^2 + 1x10^1 + 1x10^0.
But to convert 1011 from binary to decimal you would do what i did at the bottom which i replaced the 10 as twos, calculate each exponent and multiplying each exponent by the binary number that they are assigned to. After you add the numbers together to get the decimal number from binary.
For Example 1011 =1x2^3 + 0x2^2 + 1x2^1 + 1x2^0
=8 + 0 + 2 + 1
=11
So 1011 would equal 11.
Below, the chart might help you understand how to convert binary to number.