Reassign

Report a typo

Look at the code snippets below and select all correct ways to reassign a variable.

A)

var animal = 'dog';
var animal = 'bird';

B)

var animal = 'dog';
animal = 'bird';

C)

let animal = 'dog';
animal = 'bird';

D)

let animal = 'dog';
let animal = 'bird';

E)

const animal = 'dog';
animal = 'bird';
Select one or more options from the list
___

Create a free account to access the full topic