DynamoDB - with AWS SDK
Identify the error in this code snippet:
const expr = set({ ':val': 5 });
const updateParams = { UpdateExpression: expr };
Options:
A) UpdateExpression must be a string, not an object
B) ':val' should be '#val'
C) set() cannot accept objects
D) No error, code is correct
