How to draw function image of y = (1 + x) ^ (1 / x) with MATLAB

How to draw function image of y = (1 + x) ^ (1 / x) with MATLAB

x=0:0.01:10;
y=(1+x).^(1./x);
plot(x,y)