filter
function isBigEnough(value) {
return value >= 10
}
let filtered = [12, 5, 8, 130, 44].filter(isBigEnough)
// filtered is [12, 130, 44]
filter
function isBigEnough(value) {
return value >= 10
}
let filtered = [12, 5, 8, 130, 44].filter(isBigEnough)
// filtered is [12, 130, 44]
filter
select *
from toys
where toy_name ='Sir Stripypants' OR colour ='blue'
AND price = 6;
filter
df_filtered = df[(df.Price > 500000) & (df.Rooms > 3)]df_filtered.head()
filter
select toy_name
from toys
where toy_name like '%B%;
filter
const array = [-3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
function isPrime(num) {
for (let i = 2; num > i; i++) {
if (num % i == 0) {
return false;
}
}
return num > 1;
}
console.log(array.filter(isPrime)); // [2, 3, 5, 7, 11, 13]
filter
select *
from toys
where colour in ('red','blue')
AND price >= 6 AND price < 14.22;
filter
select toy_name
from toys
where colour <> 'GREEN' AND price <> 6
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us