how to turn-off logo & zoomControls in arcgis api for js?

I have installed @arcgis/core using npm when adding basemap, logo and zoomControls are present along with it. I want to turn it off!!!.
and i have tried this
const map = new Map({
basemap: ‘topo-vector’,
logo:false,
zoomControls:false
});
when I give it false I could still see the logo and zoomControls, pls help me turn it off.