📜  成为一个数字笑话 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:57.328000             🧑  作者: Mango

代码示例1
test('name', () => {
  // array
  expect(Array.isArray(['value'])).toBe(true);
  // string
  expect(typeof 'value').toBe('string');
  // object
  expect({value: 'value'}).toBeTruthy();
  expect(typeof {value: 'value'}).toBe('object');
})