On topic 'Truthy and falsy' chapter 1, both editions; The description of value type(string) which you can see on example: > The result is false if the string is empty (length is 0); otherwise, the result is true (**length > 1**). Can be verify on output as **true** when val.length is 1. Using the same function example, below the table of truthy and falsy, we can see: ```javascript function testTruthy(val){ return val ? console.log('truthy') : console.log('falsy'); } testTruthy('a'); //true ```