UEMK-CSE资源
All the question papers & assignments here including the end sem is included here
YouTube channels u can follow for getting knowledge
DS Algo Questions for better understanding and excellent grip and confidence for cracking coding rounds a
js编码面试问题
包含JS和ReactJS面试问题,以供参考。
1。
var a = Person ( 'a' ) ;
var b = new Person ( 'b' ) ;
var c = Person ;
function Person ( name ) {
this . first_name = name ;
}
console . log ( a . first_name ) ;
console . log ( b . first_name ) ;
console . lo