フロントエンド頻出1
問題文
ふりがな非表示
ふりがな表示
()(())
{}({})
[]([])
<>(<>)
=>(=>)
!==(!==)
&&(&&)
||(||)
??(??)
?.(?.)
${}(${})
...(...)
:(:)
;(;)
""("")
''('')
``(``)
+=(+=)
-=(-=)
<=(<=)
など
//(//)
/* */(/* */)
const(const)
let(let)
function(function)
interface(interface)
type(type)
class(class)
import(import)
export(export)
return(return)
if(if)
else(else)
for(for)
while(while)
switch(switch)
case(case)
break(break)
default(default)
new(new)
this(this)
super(super)
extends(extends)
implements(implements)
public(public)
private(private)
protected(protected)
readonly(readonly)
static(static)
async(async)
await(await)
Promise(Promise)
any(any)
unknown(unknown)
never(never)
void(void)
string(string)
number(number)
boolean(boolean)
Array(Array)
Record(Record)
Omit(Omit)
Pick(Pick)
Partial(Partial)
Required(Required)
Exclude(Exclude)
Extract(Extract)
NonNullable(NonNullable)
ReturnType(ReturnType)
Parameters(Parameters)
map(map)
filter(filter)
reduce(reduce)
forEach(forEach)
find(find)
includes(includes)
some(some)
every(every)
push(push)
pop(pop)
shift(shift)
unshift(unshift)
splice(splice)
slice(slice)
join(join)
split(split)
console.log(console.log)
Error(Error)
try(try)
catch(catch)
finally(finally)
throw(throw)
typeof(typeof)
instanceof(instanceof)
as(as)
is(is)
keyof(keyof)
in(in)
of(of)
true(true)